| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 # This is the public target. It contains only the public headers. The | 7 # This is the public target. It contains only the public headers. The |
| 8 # implementation (and private haders) are in 'internal'. | 8 # implementation (and private haders) are in 'internal'. |
| 9 source_set("cpp") { | 9 source_set("cpp") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 public_deps = [ | 32 public_deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//cc", | 34 "//cc", |
| 35 "//cc/surfaces", | 35 "//cc/surfaces", |
| 36 "//cc/surfaces:surface_id", | 36 "//cc/surfaces:surface_id", |
| 37 "//gpu/command_buffer/client", | 37 "//gpu/command_buffer/client", |
| 38 "//gpu/command_buffer/client:gles2_implementation", | 38 "//gpu/command_buffer/client:gles2_implementation", |
| 39 "//gpu/command_buffer/common", | 39 "//gpu/command_buffer/common", |
| 40 "//mojo/public/cpp/bindings", | 40 "//mojo/public/cpp/bindings", |
| 41 "//mojo/public/cpp/system", | 41 "//mojo/public/cpp/system", |
| 42 "//services/shell/public/interfaces", | 42 "//services/service_manager/public/interfaces", |
| 43 "//services/ui/common:mus_common", | 43 "//services/ui/common:mus_common", |
| 44 "//services/ui/public/interfaces", | 44 "//services/ui/public/interfaces", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 ":internal", | 48 ":internal", |
| 49 ":internal_or_test", | 49 ":internal_or_test", |
| 50 "//gpu/command_buffer/client:gles2_cmd_helper", | 50 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 51 "//gpu/command_buffer/client:gles2_interface", | 51 "//gpu/command_buffer/client:gles2_interface", |
| 52 "//gpu/ipc/client", | 52 "//gpu/ipc/client", |
| 53 "//services/shell/public/cpp", | 53 "//services/service_manager/public/cpp", |
| 54 "//services/ui/public/interfaces", | 54 "//services/ui/public/interfaces", |
| 55 "//ui/display", | 55 "//ui/display", |
| 56 "//ui/events", | 56 "//ui/events", |
| 57 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 data_deps = [ | 60 data_deps = [ |
| 61 "//services/ui", | 61 "//services/ui", |
| 62 ] | 62 ] |
| 63 | 63 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "//cc/surfaces", | 131 "//cc/surfaces", |
| 132 "//cc/surfaces:surface_id", | 132 "//cc/surfaces:surface_id", |
| 133 "//gpu/command_buffer/client", | 133 "//gpu/command_buffer/client", |
| 134 "//gpu/command_buffer/client:gles2_cmd_helper", | 134 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 135 "//gpu/command_buffer/client:gles2_implementation", | 135 "//gpu/command_buffer/client:gles2_implementation", |
| 136 "//gpu/command_buffer/client:gles2_interface", | 136 "//gpu/command_buffer/client:gles2_interface", |
| 137 "//gpu/command_buffer/common", | 137 "//gpu/command_buffer/common", |
| 138 "//gpu/ipc/client", | 138 "//gpu/ipc/client", |
| 139 "//mojo/public/cpp/bindings", | 139 "//mojo/public/cpp/bindings", |
| 140 "//mojo/public/cpp/system", | 140 "//mojo/public/cpp/system", |
| 141 "//services/shell/public/cpp", | 141 "//services/service_manager/public/cpp", |
| 142 "//services/shell/public/interfaces", | 142 "//services/service_manager/public/interfaces", |
| 143 "//services/ui/common:mus_common", | 143 "//services/ui/common:mus_common", |
| 144 "//services/ui/public/interfaces", | 144 "//services/ui/public/interfaces", |
| 145 "//services/ui/public/interfaces", | 145 "//services/ui/public/interfaces", |
| 146 "//ui/display", | 146 "//ui/display", |
| 147 "//ui/events", | 147 "//ui/events", |
| 148 "//ui/gfx/geometry", | 148 "//ui/gfx/geometry", |
| 149 ] | 149 ] |
| 150 | 150 |
| 151 data_deps = [ | 151 data_deps = [ |
| 152 "//services/ui", | 152 "//services/ui", |
| 153 ] | 153 ] |
| 154 | 154 |
| 155 defines = [ "GL_GLEXT_PROTOTYPES" ] | 155 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 156 | 156 |
| 157 if (use_ozone) { | 157 if (use_ozone) { |
| 158 deps += [ "//ui/ozone" ] | 158 deps += [ "//ui/ozone" ] |
| 159 } | 159 } |
| 160 } | 160 } |
| OLD | NEW |