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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("aura") { | 8 component("aura") { |
9 sources = [ | 9 sources = [ |
10 "../wm/public/activation_change_observer.cc", | 10 "../wm/public/activation_change_observer.cc", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 "window_tree_host_x11.h", | 144 "window_tree_host_x11.h", |
145 ] | 145 ] |
146 | 146 |
147 defines = [ "AURA_IMPLEMENTATION" ] | 147 defines = [ "AURA_IMPLEMENTATION" ] |
148 | 148 |
149 deps = [ | 149 deps = [ |
150 "//base", | 150 "//base", |
151 "//base:i18n", | 151 "//base:i18n", |
152 "//base/third_party/dynamic_annotations", | 152 "//base/third_party/dynamic_annotations", |
153 "//cc", | 153 "//cc", |
| 154 "//cc/animation", |
154 "//cc/surfaces", | 155 "//cc/surfaces", |
155 "//gpu/command_buffer/client", | 156 "//gpu/command_buffer/client", |
156 "//gpu/ipc/client", | 157 "//gpu/ipc/client", |
157 "//mojo/public/cpp/system", | 158 "//mojo/public/cpp/system", |
158 "//net", | 159 "//net", |
159 "//services/service_manager/public/cpp", | 160 "//services/service_manager/public/cpp", |
160 "//services/ui/public/cpp", | 161 "//services/ui/public/cpp", |
161 "//services/ui/public/interfaces", | 162 "//services/ui/public/interfaces", |
162 "//skia", | 163 "//skia", |
163 "//ui/base", | 164 "//ui/base", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 "demo/demo_main.cc", | 306 "demo/demo_main.cc", |
306 ] | 307 ] |
307 | 308 |
308 deps = [ | 309 deps = [ |
309 ":aura", | 310 ":aura", |
310 ":test_support", | 311 ":test_support", |
311 "//base", | 312 "//base", |
312 "//base:i18n", | 313 "//base:i18n", |
313 "//build/config/sanitizers:deps", | 314 "//build/config/sanitizers:deps", |
314 "//build/win:default_exe_manifest", | 315 "//build/win:default_exe_manifest", |
| 316 "//cc/animation", |
315 "//cc/surfaces", | 317 "//cc/surfaces", |
316 "//skia", | 318 "//skia", |
317 "//third_party/icu", | 319 "//third_party/icu", |
318 "//ui/base", | 320 "//ui/base", |
319 "//ui/compositor", | 321 "//ui/compositor", |
320 "//ui/compositor:test_support", | 322 "//ui/compositor:test_support", |
321 "//ui/display", | 323 "//ui/display", |
322 "//ui/events", | 324 "//ui/events", |
323 "//ui/gfx", | 325 "//ui/gfx", |
324 "//ui/gfx/geometry", | 326 "//ui/gfx/geometry", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 ] | 363 ] |
362 | 364 |
363 if (is_linux) { | 365 if (is_linux) { |
364 deps += [ "//third_party/mesa" ] | 366 deps += [ "//third_party/mesa" ] |
365 } | 367 } |
366 | 368 |
367 data_deps = [ | 369 data_deps = [ |
368 "//third_party/mesa:osmesa", | 370 "//third_party/mesa:osmesa", |
369 ] | 371 ] |
370 } | 372 } |
OLD | NEW |