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 | 6 |
7 component("aura") { | 7 component("aura") { |
8 sources = [ | 8 sources = [ |
9 "client/aura_constants.cc", | 9 "client/aura_constants.cc", |
10 "client/aura_constants.h", | 10 "client/aura_constants.h", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 "../wm/public/drag_drop_delegate.cc", | 80 "../wm/public/drag_drop_delegate.cc", |
81 "../wm/public/drag_drop_delegate.h", | 81 "../wm/public/drag_drop_delegate.h", |
82 "../wm/public/scoped_tooltip_disabler.cc", | 82 "../wm/public/scoped_tooltip_disabler.cc", |
83 "../wm/public/scoped_tooltip_disabler.h", | 83 "../wm/public/scoped_tooltip_disabler.h", |
84 "../wm/public/tooltip_client.cc", | 84 "../wm/public/tooltip_client.cc", |
85 "../wm/public/tooltip_client.h", | 85 "../wm/public/tooltip_client.h", |
86 "../wm/public/transient_window_client.cc", | 86 "../wm/public/transient_window_client.cc", |
87 "../wm/public/transient_window_client.h", | 87 "../wm/public/transient_window_client.h", |
88 "../wm/public/window_move_client.cc", | 88 "../wm/public/window_move_client.cc", |
89 "../wm/public/window_move_client.h", | 89 "../wm/public/window_move_client.h", |
| 90 "../wm/public/window_types.h", |
90 ] | 91 ] |
91 | 92 |
92 defines = [ | 93 defines = [ |
93 "AURA_IMPLEMENTATION", | 94 "AURA_IMPLEMENTATION", |
94 ] | 95 ] |
95 | 96 |
96 deps = [ | 97 deps = [ |
97 "//base", | 98 "//base", |
98 "//base:i18n", | 99 "//base:i18n", |
99 "//base/third_party/dynamic_annotations", | 100 "//base/third_party/dynamic_annotations", |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 "//ui/gfx/geometry", | 300 "//ui/gfx/geometry", |
300 "//ui/gl", | 301 "//ui/gl", |
301 ] | 302 ] |
302 | 303 |
303 if (is_linux) { | 304 if (is_linux) { |
304 deps += [ | 305 deps += [ |
305 "//third_party/mesa", | 306 "//third_party/mesa", |
306 ] | 307 ] |
307 } | 308 } |
308 } | 309 } |
OLD | NEW |