| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//gpu/command_buffer/client:gles2_interface", | 123 "//gpu/command_buffer/client:gles2_interface", |
| 124 "//gpu/command_buffer/common", | 124 "//gpu/command_buffer/common", |
| 125 "//gpu/ipc/client", | 125 "//gpu/ipc/client", |
| 126 "//mojo/public/cpp/bindings", | 126 "//mojo/public/cpp/bindings", |
| 127 "//mojo/public/cpp/system", | 127 "//mojo/public/cpp/system", |
| 128 "//services/service_manager/public/cpp", | 128 "//services/service_manager/public/cpp", |
| 129 "//services/service_manager/public/interfaces", | 129 "//services/service_manager/public/interfaces", |
| 130 "//services/ui/common:mus_common", | 130 "//services/ui/common:mus_common", |
| 131 "//services/ui/public/cpp/gpu", | 131 "//services/ui/public/cpp/gpu", |
| 132 "//services/ui/public/interfaces", | 132 "//services/ui/public/interfaces", |
| 133 "//skia/public/interfaces", |
| 133 "//ui/display", | 134 "//ui/display", |
| 134 "//ui/events", | 135 "//ui/events", |
| 135 "//ui/gfx/geometry", | 136 "//ui/gfx/geometry", |
| 136 ] | 137 ] |
| 137 | 138 |
| 138 data_deps = [ | 139 data_deps = [ |
| 139 "//services/ui", | 140 "//services/ui", |
| 140 ] | 141 ] |
| 141 | 142 |
| 142 defines = [ "GL_GLEXT_PROTOTYPES" ] | 143 defines = [ "GL_GLEXT_PROTOTYPES" ] |
| 143 | 144 |
| 144 if (use_ozone) { | 145 if (use_ozone) { |
| 145 deps += [ "//ui/ozone" ] | 146 deps += [ "//ui/ozone" ] |
| 146 } | 147 } |
| 147 } | 148 } |
| OLD | NEW |