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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 testonly = true | 224 testonly = true |
225 | 225 |
226 sources = [ | 226 sources = [ |
227 "demo/demo_main.cc", | 227 "demo/demo_main.cc", |
228 ] | 228 ] |
229 | 229 |
230 deps = [ | 230 deps = [ |
231 ":aura", | 231 ":aura", |
232 ":test_support", | 232 ":test_support", |
233 "//base", | 233 "//base", |
| 234 "//base:i18n", |
234 "//build/config/sanitizers:deps", | 235 "//build/config/sanitizers:deps", |
235 "//base:i18n", | |
236 "//skia", | 236 "//skia", |
237 "//third_party/icu", | 237 "//third_party/icu", |
238 "//ui/base", | 238 "//ui/base", |
239 "//ui/compositor", | 239 "//ui/compositor", |
240 "//ui/compositor:test_support", | 240 "//ui/compositor:test_support", |
241 "//ui/events", | 241 "//ui/events", |
242 "//ui/gfx", | 242 "//ui/gfx", |
243 "//ui/gfx/geometry", | 243 "//ui/gfx/geometry", |
244 "//ui/gl", | 244 "//ui/gl", |
245 ] | 245 ] |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 ] | 299 ] |
300 | 300 |
301 deps = [ | 301 deps = [ |
302 ":test_support", | 302 ":test_support", |
303 "//base/allocator", | 303 "//base/allocator", |
304 "//base/test:test_support", | 304 "//base/test:test_support", |
305 "//skia", | 305 "//skia", |
306 "//testing/gtest", | 306 "//testing/gtest", |
307 "//ui/base:test_support", | 307 "//ui/base:test_support", |
308 "//ui/compositor:test_support", | 308 "//ui/compositor:test_support", |
| 309 "//ui/events:gesture_detection", |
309 "//ui/events:test_support", | 310 "//ui/events:test_support", |
310 "//ui/events:gesture_detection", | |
311 "//ui/gfx", | 311 "//ui/gfx", |
312 "//ui/gfx/geometry", | 312 "//ui/gfx/geometry", |
313 "//ui/gl", | 313 "//ui/gl", |
314 ] | 314 ] |
315 | 315 |
316 if (is_linux) { | 316 if (is_linux) { |
317 deps += [ "//third_party/mesa" ] | 317 deps += [ "//third_party/mesa" ] |
318 } | 318 } |
319 | 319 |
320 data_deps = [ | 320 data_deps = [ |
321 "//third_party/mesa:osmesa", | 321 "//third_party/mesa:osmesa", |
322 ] | 322 ] |
323 } | 323 } |
OLD | NEW |