| 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 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 5 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 config("mojo_use_gles2") { | 7 config("mojo_use_gles2") { |
| 8 defines = [ "MOJO_USE_GLES2_IMPL" ] | 8 defines = [ "MOJO_USE_GLES2_IMPL" ] |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 ":gles2_use_mojo", | 30 ":gles2_use_mojo", |
| 31 ":mojo_use_gles2", | 31 ":mojo_use_gles2", |
| 32 ] | 32 ] |
| 33 public_configs = [ ":gles2_use_mojo" ] | 33 public_configs = [ ":gles2_use_mojo" ] |
| 34 all_dependent_configs = [ ":mojo_use_gles2" ] | 34 all_dependent_configs = [ ":mojo_use_gles2" ] |
| 35 | 35 |
| 36 deps = [ | 36 deps = [ |
| 37 "//base", | 37 "//base", |
| 38 "//base/third_party/dynamic_annotations", | 38 "//base/third_party/dynamic_annotations", |
| 39 "//components/gles2:lib", | 39 "//components/gles2:lib", |
| 40 "//components/gpu/public/interfaces", |
| 40 "//gpu/command_buffer/client", | 41 "//gpu/command_buffer/client", |
| 41 "//gpu/command_buffer/client:gles2_cmd_helper", | 42 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 42 "//gpu/command_buffer/client:gles2_implementation", | 43 "//gpu/command_buffer/client:gles2_implementation", |
| 43 "//gpu/command_buffer/client:gles2_interface", | 44 "//gpu/command_buffer/client:gles2_interface", |
| 44 "//gpu/command_buffer/common", | 45 "//gpu/command_buffer/common", |
| 45 "//mojo/environment:chromium", | 46 "//mojo/environment:chromium", |
| 46 "//third_party/mojo/src/mojo/public/c/gles2:headers", | 47 "//third_party/mojo/src/mojo/public/c/gles2:headers", |
| 47 "//third_party/mojo/src/mojo/public/c/system", | 48 "//third_party/mojo/src/mojo/public/c/system", |
| 48 "//third_party/mojo/src/mojo/public/cpp/bindings", | 49 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 49 "//third_party/mojo/src/mojo/public/cpp/system", | 50 "//third_party/mojo/src/mojo/public/cpp/system", |
| 50 "//third_party/mojo_services/src/gpu/public/interfaces", | |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 include_dirs = [ ".." ] | 53 include_dirs = [ ".." ] |
| 54 } | 54 } |
| OLD | NEW |