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 ] | 27 ] |
28 | 28 |
29 defines = [ "VIEWS_IMPLEMENTATION" ] | 29 defines = [ "VIEWS_IMPLEMENTATION" ] |
30 | 30 |
31 deps = [ | 31 deps = [ |
32 "//base:i18n", | 32 "//base:i18n", |
33 "//base/third_party/dynamic_annotations", | 33 "//base/third_party/dynamic_annotations", |
34 "//skia", | 34 "//skia", |
35 "//third_party/icu", | 35 "//third_party/icu", |
36 "//ui/accessibility", | 36 "//ui/accessibility", |
37 "//ui/native_theme", | |
38 "//ui/resources", | 37 "//ui/resources", |
39 "//ui/strings", | 38 "//ui/strings", |
40 "//ui/views/resources", | 39 "//ui/views/resources", |
41 "//url", | 40 "//url", |
42 ] | 41 ] |
43 | 42 |
44 public_deps = [ | 43 public_deps = [ |
45 "//base", | 44 "//base", |
46 "//ui/accessibility:ax_gen", | 45 "//ui/accessibility:ax_gen", |
47 "//ui/base", | 46 "//ui/base", |
48 "//ui/base/ime", | 47 "//ui/base/ime", |
49 "//ui/compositor", | 48 "//ui/compositor", |
50 "//ui/events", | 49 "//ui/events", |
51 "//ui/events:events_base", | 50 "//ui/events:events_base", |
52 "//ui/events/platform", | 51 "//ui/events/platform", |
53 "//ui/gfx", | 52 "//ui/gfx", |
54 "//ui/gfx/geometry", | 53 "//ui/gfx/geometry", |
| 54 "//ui/native_theme", |
55 "//ui/views/resources", | 55 "//ui/views/resources", |
56 ] | 56 ] |
57 | 57 |
58 if (use_x11 && !is_chromeos) { | 58 if (use_x11 && !is_chromeos) { |
59 deps += [ "//ui/display/util" ] | 59 deps += [ "//ui/display/util" ] |
60 } | 60 } |
61 if (is_linux && !is_chromeos) { | 61 if (is_linux && !is_chromeos) { |
62 sources -= [ "window/window_button_order_provider.cc" ] | 62 sources -= [ "window/window_button_order_provider.cc" ] |
63 deps += [ "//ui/shell_dialogs" ] | 63 deps += [ "//ui/shell_dialogs" ] |
64 } else { | 64 } else { |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 "//skia", | 298 "//skia", |
299 "//testing/gtest", | 299 "//testing/gtest", |
300 "//ui/base:test_support", | 300 "//ui/base:test_support", |
301 "//ui/compositor", | 301 "//ui/compositor", |
302 "//ui/resources", | 302 "//ui/resources", |
303 "//ui/resources:ui_test_pak", | 303 "//ui/resources:ui_test_pak", |
304 "//ui/strings", | 304 "//ui/strings", |
305 ] | 305 ] |
306 } | 306 } |
307 } | 307 } |
OLD | NEW |