Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Side by Side Diff: mojo/gles2/BUILD.gn

Issue 464153002: GN: Create a :gles2_interface target to resolve some check errors in //cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing config forwarding Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//mojo/system.gni") 6 import("//mojo/system.gni")
7 7
8 config("mojo_use_gles2") { 8 config("mojo_use_gles2") {
9 defines = [ "MOJO_USE_GLES2_IMPL" ] 9 defines = [ "MOJO_USE_GLES2_IMPL" ]
10 } 10 }
11 11
12 config("gles2_use_mojo") { 12 config("gles2_use_mojo") {
13 defines = [ "USE_MOJO_GLES2" ] 13 defines = [ "USE_MOJO_GLES2" ]
14 } 14 }
15 15
16 # GYP version: mojo/mojo_base.gyp:mojo_gles2_impl 16 # GYP version: mojo/mojo_base.gyp:mojo_gles2_impl
17 component("gles2") { 17 component("gles2") {
18 output_name = "mojo_gles2_impl" 18 output_name = "mojo_gles2_impl"
19 19
20 deps = [ 20 deps = [
21 "//base", 21 "//base",
22 "//base/third_party/dynamic_annotations", 22 "//base/third_party/dynamic_annotations",
23 "//gpu/command_buffer/client", 23 "//gpu/command_buffer/client",
24 "//gpu/command_buffer/common", 24 "//gpu/command_buffer/common",
25 "//gpu/command_buffer/client:gles2_implementation", 25 "//gpu/command_buffer/client:gles2_implementation",
26 "//gpu/command_buffer/client:gles2_interface",
26 "//mojo/public/gles2", 27 "//mojo/public/gles2",
27 "//mojo/services/gles2:bindings", 28 "//mojo/services/gles2:bindings",
28 "//mojo/services/gles2:interfaces", 29 "//mojo/services/gles2:interfaces",
29 "//mojo/environment:chromium", 30 "//mojo/environment:chromium",
30 ] 31 ]
31 deps += mojo_system_for_component 32 deps += mojo_system_for_component
32 33
33 defines = [ 34 defines = [
34 "MOJO_GLES2_IMPL_IMPLEMENTATION", 35 "MOJO_GLES2_IMPL_IMPLEMENTATION",
35 "MOJO_GLES2_IMPLEMENTATION", 36 "MOJO_GLES2_IMPLEMENTATION",
36 ] 37 ]
37 38
38 configs += [ 39 configs += [
39 ":gles2_use_mojo", 40 ":gles2_use_mojo",
40 ":mojo_use_gles2", 41 ":mojo_use_gles2",
41 ] 42 ]
42 direct_dependent_configs = [ ":gles2_use_mojo" ] 43 direct_dependent_configs = [ ":gles2_use_mojo" ]
43 all_dependent_configs = [ ":mojo_use_gles2" ] 44 all_dependent_configs = [ ":mojo_use_gles2" ]
44 45
45 sources = [ 46 sources = [
46 "command_buffer_client_impl.cc", 47 "command_buffer_client_impl.cc",
47 "command_buffer_client_impl.h", 48 "command_buffer_client_impl.h",
48 "gles2_impl_export.h", 49 "gles2_impl_export.h",
49 "gles2_impl.cc", 50 "gles2_impl.cc",
50 "gles2_context.cc", 51 "gles2_context.cc",
51 "gles2_context.h", 52 "gles2_context.h",
52 ] 53 ]
53 } 54 }
OLDNEW
« gpu/command_buffer/client/BUILD.gn ('K') | « gpu/command_buffer/client/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698