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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/platform_handle:for_component", | 52 "//mojo/platform_handle:for_component", |
53 "//mojo/public/c/system:for_component", | 53 "//mojo/public/c/system:for_component", |
54 "//mojo/public/cpp/bindings", | 54 "//mojo/public/cpp/bindings", |
55 "//mojo/public/cpp/system", | 55 "//mojo/public/cpp/system", |
56 ] | 56 ] |
57 | 57 |
58 if (!is_component_build) { | |
59 deps += [ "//gpu/command_buffer/service" ] | |
60 } | |
61 | |
62 include_dirs = [ ".." ] | 58 include_dirs = [ ".." ] |
63 } | 59 } |
OLD | NEW |