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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 96 |
97 deps = [ | 97 deps = [ |
98 "//base", | 98 "//base", |
99 "//base:i18n", | 99 "//base:i18n", |
100 "//base/third_party/dynamic_annotations", | 100 "//base/third_party/dynamic_annotations", |
101 "//skia", | 101 "//skia", |
102 "//ui/base", | 102 "//ui/base", |
103 "//ui/base/ime", | 103 "//ui/base/ime", |
104 "//ui/compositor", | 104 "//ui/compositor", |
105 "//ui/events", | 105 "//ui/events", |
| 106 "//ui/events:events_base", |
106 "//ui/events/platform", | 107 "//ui/events/platform", |
107 "//ui/gfx", | 108 "//ui/gfx", |
108 "//ui/gfx/geometry", | 109 "//ui/gfx/geometry", |
109 ] | 110 ] |
110 | 111 |
111 if (use_x11) { | 112 if (use_x11) { |
112 configs += [ | 113 configs += [ |
113 "//build/config/linux:x11", | 114 "//build/config/linux:x11", |
114 "//build/config/linux:xrandr", | 115 "//build/config/linux:xrandr", |
115 ] | 116 ] |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 "//ui/events:gesture_detection", | 297 "//ui/events:gesture_detection", |
297 "//ui/gfx", | 298 "//ui/gfx", |
298 "//ui/gfx/geometry", | 299 "//ui/gfx/geometry", |
299 "//ui/gl", | 300 "//ui/gl", |
300 ] | 301 ] |
301 | 302 |
302 if (is_linux) { | 303 if (is_linux) { |
303 deps += [ "//third_party/mesa" ] | 304 deps += [ "//third_party/mesa" ] |
304 } | 305 } |
305 } | 306 } |
OLD | NEW |