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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ] | 112 ] |
113 | 113 |
| 114 public_deps = [ |
| 115 "//ui/platform_window", |
| 116 ] |
| 117 |
114 if (use_x11) { | 118 if (use_x11) { |
115 configs += [ | 119 configs += [ |
116 "//build/config/linux:x11", | 120 "//build/config/linux:x11", |
117 "//build/config/linux:xrandr", | 121 "//build/config/linux:xrandr", |
118 ] | 122 ] |
119 deps += [ | 123 deps += [ |
120 "//ui/events:events_base", | 124 "//ui/events:events_base", |
121 "//ui/events/devices", | 125 "//ui/events/devices", |
122 "//ui/events/platform/x11", | 126 "//ui/events/platform/x11", |
123 "//ui/gfx/x", | 127 "//ui/gfx/x", |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 "//base/test:test_support", | 310 "//base/test:test_support", |
307 "//skia", | 311 "//skia", |
308 "//testing/gtest", | 312 "//testing/gtest", |
309 "//ui/base:test_support", | 313 "//ui/base:test_support", |
310 "//ui/compositor:test_support", | 314 "//ui/compositor:test_support", |
311 "//ui/events:gesture_detection", | 315 "//ui/events:gesture_detection", |
312 "//ui/events:test_support", | 316 "//ui/events:test_support", |
313 "//ui/gfx", | 317 "//ui/gfx", |
314 "//ui/gfx/geometry", | 318 "//ui/gfx/geometry", |
315 "//ui/gl", | 319 "//ui/gl", |
| 320 "//ui/gl:test_support", |
316 ] | 321 ] |
317 | 322 |
318 if (is_linux) { | 323 if (is_linux) { |
319 deps += [ "//third_party/mesa" ] | 324 deps += [ "//third_party/mesa" ] |
320 } | 325 } |
321 | 326 |
322 data_deps = [ | 327 data_deps = [ |
323 "//third_party/mesa:osmesa", | 328 "//third_party/mesa:osmesa", |
324 ] | 329 ] |
325 } | 330 } |
OLD | NEW |