summaryrefslogtreecommitdiffstats
path: root/mojo/cc/BUILD.gn
blob: af2a8e50f64cf06eefb84f8cc28daf548f4a1461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# GYP version: mojo/mojo.gyp:mojo_cc_support
source_set("cc") {
  deps = [
    "//base",
    "//cc",
    "//cc/surfaces",
    "//skia",
    "//gpu/command_buffer/client:gles2_implementation",
    "//mojo/public/gles2:for_shared_library",
    "//mojo/services/public/cpp/surfaces",
    "//mojo/services/public/interfaces/surfaces",
  ]

  sources = [
    "context_provider_mojo.cc",
    "context_provider_mojo.h",
    "output_surface_mojo.cc",
    "output_surface_mojo.h",
  ]
}