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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
10 [ rebase_path("views.gyp") ], | 10 [ rebase_path("views.gyp") ], |
(...skipping 16 matching lines...) Expand all Loading... |
27 "//ui/resources", | 27 "//ui/resources", |
28 "//ui/strings", | 28 "//ui/strings", |
29 "//ui/wm", | 29 "//ui/wm", |
30 "//url", | 30 "//url", |
31 ] | 31 ] |
32 | 32 |
33 public_deps = [ | 33 public_deps = [ |
34 "//base", | 34 "//base", |
35 "//ui/accessibility:ax_gen", | 35 "//ui/accessibility:ax_gen", |
36 "//ui/base", | 36 "//ui/base", |
| 37 "//ui/base/ime", |
37 "//ui/compositor", | 38 "//ui/compositor", |
38 "//ui/events", | 39 "//ui/events", |
39 "//ui/events:events_base", | 40 "//ui/events:events_base", |
40 "//ui/events/platform", | 41 "//ui/events/platform", |
41 "//ui/gfx", | 42 "//ui/gfx", |
42 "//ui/gfx/geometry", | 43 "//ui/gfx/geometry", |
43 ] | 44 ] |
44 | 45 |
45 if (use_x11 && !is_chromeos) { | 46 if (use_x11 && !is_chromeos) { |
46 deps += [ "//ui/display/util" ] | 47 deps += [ "//ui/display/util" ] |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 public_deps = [ | 123 public_deps = [ |
123 ":views", | 124 ":views", |
124 ] | 125 ] |
125 deps = [ | 126 deps = [ |
126 "//base", | 127 "//base", |
127 "//ipc:test_support", | 128 "//ipc:test_support", |
128 "//skia", | 129 "//skia", |
129 "//testing/gtest", | 130 "//testing/gtest", |
130 "//ui/aura", | 131 "//ui/aura", |
131 "//ui/base", | 132 "//ui/base", |
| 133 "//ui/base/ime", |
132 "//ui/compositor", | 134 "//ui/compositor", |
133 "//ui/compositor:test_support", | 135 "//ui/compositor:test_support", |
134 "//ui/events", | 136 "//ui/events", |
135 "//ui/events:events_base", | 137 "//ui/events:events_base", |
136 "//ui/events:test_support", | 138 "//ui/events:test_support", |
137 "//ui/events/platform", | 139 "//ui/events/platform", |
138 "//ui/gfx", | 140 "//ui/gfx", |
139 "//ui/gfx/geometry", | 141 "//ui/gfx/geometry", |
140 "//ui/wm", | 142 "//ui/wm", |
141 ] | 143 ] |
(...skipping 25 matching lines...) Expand all Loading... |
167 "//base", | 169 "//base", |
168 "//base:i18n", | 170 "//base:i18n", |
169 "//base/allocator", | 171 "//base/allocator", |
170 "//base/test:test_support", | 172 "//base/test:test_support", |
171 "//skia", | 173 "//skia", |
172 "//testing/gtest", | 174 "//testing/gtest", |
173 "//third_party/icu", | 175 "//third_party/icu", |
174 "//ui/accessibility", | 176 "//ui/accessibility", |
175 "//ui/aura", | 177 "//ui/aura", |
176 "//ui/base", | 178 "//ui/base", |
| 179 "//ui/base/ime", |
177 "//ui/base:test_support", | 180 "//ui/base:test_support", |
178 "//ui/compositor:test_support", | 181 "//ui/compositor:test_support", |
179 "//ui/events:test_support", | 182 "//ui/events:test_support", |
180 "//ui/events:events_base", | 183 "//ui/events:events_base", |
181 "//ui/events/platform", | 184 "//ui/events/platform", |
182 "//ui/gfx", | 185 "//ui/gfx", |
183 "//ui/gfx/geometry", | 186 "//ui/gfx/geometry", |
184 "//ui/gl", | 187 "//ui/gl", |
185 "//ui/resources", | 188 "//ui/resources", |
186 "//ui/strings", | 189 "//ui/strings", |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 "//testing/gtest", | 278 "//testing/gtest", |
276 "//ui/aura", | 279 "//ui/aura", |
277 "//ui/compositor", | 280 "//ui/compositor", |
278 "//ui/resources", | 281 "//ui/resources", |
279 "//ui/resources:ui_test_pak", | 282 "//ui/resources:ui_test_pak", |
280 "//ui/strings", | 283 "//ui/strings", |
281 "//ui/wm", | 284 "//ui/wm", |
282 ] | 285 ] |
283 } | 286 } |
284 } | 287 } |
OLD | NEW |