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 "client/aura_constants.cc", | 10 "client/aura_constants.cc", |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 ] | 92 ] |
93 | 93 |
94 defines = [ "AURA_IMPLEMENTATION" ] | 94 defines = [ "AURA_IMPLEMENTATION" ] |
95 | 95 |
96 deps = [ | 96 deps = [ |
97 "//base", | 97 "//base", |
98 "//base:i18n", | 98 "//base:i18n", |
99 "//base/third_party/dynamic_annotations", | 99 "//base/third_party/dynamic_annotations", |
100 "//skia", | 100 "//skia", |
101 "//ui/base", | 101 "//ui/base", |
| 102 "//ui/base/ime", |
102 "//ui/compositor", | 103 "//ui/compositor", |
103 "//ui/events", | 104 "//ui/events", |
104 "//ui/events/platform", | 105 "//ui/events/platform", |
105 "//ui/gfx", | 106 "//ui/gfx", |
106 "//ui/gfx/geometry", | 107 "//ui/gfx/geometry", |
107 ] | 108 ] |
108 | 109 |
109 if (use_x11) { | 110 if (use_x11) { |
110 configs += [ | 111 configs += [ |
111 "//build/config/linux:x11", | 112 "//build/config/linux:x11", |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 "//ui/gfx", | 295 "//ui/gfx", |
295 "//ui/gfx/geometry", | 296 "//ui/gfx/geometry", |
296 "//ui/gl", | 297 "//ui/gl", |
297 ] | 298 ] |
298 | 299 |
299 if (is_linux) { | 300 if (is_linux) { |
300 deps += [ "//third_party/mesa" ] | 301 deps += [ "//third_party/mesa" ] |
301 } | 302 } |
302 } | 303 } |
303 } | 304 } |
OLD | NEW |