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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "//base/third_party/dynamic_annotations", | 102 "//base/third_party/dynamic_annotations", |
103 "//skia", | 103 "//skia", |
104 "//ui/base", | 104 "//ui/base", |
105 "//ui/base/ime", | 105 "//ui/base/ime", |
106 "//ui/compositor", | 106 "//ui/compositor", |
107 "//ui/events", | 107 "//ui/events", |
108 "//ui/events:events_base", | 108 "//ui/events:events_base", |
109 "//ui/events/platform", | 109 "//ui/events/platform", |
110 "//ui/gfx", | 110 "//ui/gfx", |
111 "//ui/gfx/geometry", | 111 "//ui/gfx/geometry", |
| 112 "//ui/platform_window", |
112 ] | 113 ] |
113 | 114 |
114 if (use_x11) { | 115 if (use_x11) { |
115 configs += [ | 116 configs += [ |
116 "//build/config/linux:x11", | 117 "//build/config/linux:x11", |
117 "//build/config/linux:xrandr", | 118 "//build/config/linux:xrandr", |
118 ] | 119 ] |
119 deps += [ | 120 deps += [ |
120 "//ui/events:events_base", | 121 "//ui/events:events_base", |
121 "//ui/events/devices", | 122 "//ui/events/devices", |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 "//base/allocator", | 306 "//base/allocator", |
306 "//base/test:test_support", | 307 "//base/test:test_support", |
307 "//skia", | 308 "//skia", |
308 "//testing/gtest", | 309 "//testing/gtest", |
309 "//ui/base:test_support", | 310 "//ui/base:test_support", |
310 "//ui/compositor:test_support", | 311 "//ui/compositor:test_support", |
311 "//ui/events:gesture_detection", | 312 "//ui/events:gesture_detection", |
312 "//ui/events:test_support", | 313 "//ui/events:test_support", |
313 "//ui/gfx", | 314 "//ui/gfx", |
314 "//ui/gfx/geometry", | 315 "//ui/gfx/geometry", |
315 "//ui/gl", | 316 "//ui/gl:test_support", |
316 ] | 317 ] |
317 | 318 |
318 if (is_linux) { | 319 if (is_linux) { |
319 deps += [ "//third_party/mesa" ] | 320 deps += [ "//third_party/mesa" ] |
320 } | 321 } |
321 | 322 |
322 data_deps = [ | 323 data_deps = [ |
323 "//third_party/mesa:osmesa", | 324 "//third_party/mesa:osmesa", |
324 ] | 325 ] |
325 } | 326 } |
OLD | NEW |