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 29 matching lines...) Expand all Loading... |
40 "//ui/views/resources", | 40 "//ui/views/resources", |
41 "//url", | 41 "//url", |
42 ] | 42 ] |
43 | 43 |
44 public_deps = [ | 44 public_deps = [ |
45 "//base", | 45 "//base", |
46 "//ui/accessibility:ax_gen", | 46 "//ui/accessibility:ax_gen", |
47 "//ui/base", | 47 "//ui/base", |
48 "//ui/base/ime", | 48 "//ui/base/ime", |
49 "//ui/compositor", | 49 "//ui/compositor", |
| 50 "//ui/display", |
50 "//ui/events", | 51 "//ui/events", |
51 "//ui/events:events_base", | 52 "//ui/events:events_base", |
52 "//ui/events/platform", | 53 "//ui/events/platform", |
53 "//ui/gfx", | 54 "//ui/gfx", |
54 "//ui/gfx/geometry", | 55 "//ui/gfx/geometry", |
55 "//ui/views/resources", | 56 "//ui/views/resources", |
56 ] | 57 ] |
57 | 58 |
58 if (use_x11 && !is_chromeos) { | 59 if (use_x11 && !is_chromeos) { |
59 deps += [ "//ui/display/util" ] | 60 deps += [ "//ui/display/util" ] |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 "//ui/base:test_support", | 314 "//ui/base:test_support", |
314 "//ui/compositor", | 315 "//ui/compositor", |
315 "//ui/events:test_support", | 316 "//ui/events:test_support", |
316 "//ui/gl:test_support", | 317 "//ui/gl:test_support", |
317 "//ui/resources", | 318 "//ui/resources", |
318 "//ui/resources:ui_test_pak", | 319 "//ui/resources:ui_test_pak", |
319 "//ui/strings", | 320 "//ui/strings", |
320 ] | 321 ] |
321 } | 322 } |
322 } | 323 } |
OLD | NEW |