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 | 7 |
8 gypi_values = exec_script( | 8 gypi_values = exec_script( |
9 "//build/gypi_to_gn.py", | 9 "//build/gypi_to_gn.py", |
10 [ rebase_path("views.gyp") ], | 10 [ rebase_path("views.gyp") ], |
11 "scope", | 11 "scope", |
12 [ "views.gyp" ]) | 12 [ "views.gyp" ]) |
13 | 13 |
14 component("views") { | 14 component("views") { |
15 sources = gypi_values.views_sources | 15 sources = gypi_values.views_sources |
16 | 16 |
17 defines = [ "VIEWS_IMPLEMENTATION" ] | 17 defines = [ "VIEWS_IMPLEMENTATION" ] |
18 | 18 |
19 deps = [ | 19 deps = [ |
20 "//base:i18n", | 20 "//base:i18n", |
21 "//base/third_party/dynamic_annotations", | 21 "//base/third_party/dynamic_annotations", |
22 "//skia", | 22 "//skia", |
23 "//third_party/icu", | 23 "//third_party/icu", |
24 "//third_party/wtl", | |
25 "//ui/accessibility", | 24 "//ui/accessibility", |
26 "//ui/aura", | 25 "//ui/aura", |
27 "//ui/native_theme", | 26 "//ui/native_theme", |
28 "//ui/resources", | 27 "//ui/resources", |
29 "//ui/strings", | 28 "//ui/strings", |
30 "//ui/wm", | 29 "//ui/wm", |
31 "//url", | 30 "//url", |
32 ] | 31 ] |
33 | 32 |
34 public_deps = [ | 33 public_deps = [ |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 "//testing/gtest", | 255 "//testing/gtest", |
257 "//ui/aura", | 256 "//ui/aura", |
258 "//ui/compositor", | 257 "//ui/compositor", |
259 "//ui/resources", | 258 "//ui/resources", |
260 "//ui/resources:ui_test_pak", | 259 "//ui/resources:ui_test_pak", |
261 "//ui/strings", | 260 "//ui/strings", |
262 "//ui/wm", | 261 "//ui/wm", |
263 ] | 262 ] |
264 } | 263 } |
265 } | 264 } |
OLD | NEW |