OLD | NEW |
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 config("mojo_use_gles2") { | 5 config("mojo_use_gles2") { |
6 defines = [ "MOJO_USE_GLES2_IMPL" ] | 6 defines = [ "MOJO_USE_GLES2_IMPL" ] |
7 } | 7 } |
8 | 8 |
9 config("gles2_use_mojo") { | 9 config("gles2_use_mojo") { |
10 defines = [ "GLES2_USE_MOJO" ] | 10 defines = [ "GLES2_USE_MOJO" ] |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 deps = [ | 42 deps = [ |
43 "//base", | 43 "//base", |
44 "//base/third_party/dynamic_annotations", | 44 "//base/third_party/dynamic_annotations", |
45 "//components/mus/gles2:lib", | 45 "//components/mus/gles2:lib", |
46 "//components/mus/public/interfaces", | 46 "//components/mus/public/interfaces", |
47 "//gpu/command_buffer/client", | 47 "//gpu/command_buffer/client", |
48 "//gpu/command_buffer/client:gles2_cmd_helper", | 48 "//gpu/command_buffer/client:gles2_cmd_helper", |
49 "//gpu/command_buffer/client:gles2_implementation", | 49 "//gpu/command_buffer/client:gles2_implementation", |
50 "//gpu/command_buffer/client:gles2_interface", | 50 "//gpu/command_buffer/client:gles2_interface", |
51 "//gpu/command_buffer/common", | 51 "//gpu/command_buffer/common", |
52 "//mojo/environment:chromium", | |
53 "//mojo/platform_handle:for_component", | 52 "//mojo/platform_handle:for_component", |
54 "//mojo/public/c/system:for_component", | 53 "//mojo/public/c/system:for_component", |
55 "//mojo/public/cpp/bindings", | 54 "//mojo/public/cpp/bindings", |
56 "//mojo/public/cpp/system", | 55 "//mojo/public/cpp/system", |
57 ] | 56 ] |
58 | 57 |
59 if (!is_component_build) { | 58 if (!is_component_build) { |
60 deps += [ "//gpu/command_buffer/service:service_sources" ] | 59 deps += [ "//gpu/command_buffer/service:service_sources" ] |
61 } | 60 } |
62 | 61 |
63 include_dirs = [ ".." ] | 62 include_dirs = [ ".." ] |
64 } | 63 } |
OLD | NEW |