| 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 11 matching lines...) Expand all Loading... |
| 22 deps = [ | 22 deps = [ |
| 23 "//base:i18n", | 23 "//base:i18n", |
| 24 "//base/third_party/dynamic_annotations", | 24 "//base/third_party/dynamic_annotations", |
| 25 "//skia", | 25 "//skia", |
| 26 "//third_party/icu", | 26 "//third_party/icu", |
| 27 "//ui/accessibility", | 27 "//ui/accessibility", |
| 28 "//ui/aura", | 28 "//ui/aura", |
| 29 "//ui/native_theme", | 29 "//ui/native_theme", |
| 30 "//ui/resources", | 30 "//ui/resources", |
| 31 "//ui/strings", | 31 "//ui/strings", |
| 32 "//ui/touch_selection", |
| 32 "//ui/wm", | 33 "//ui/wm", |
| 33 "//url", | 34 "//url", |
| 34 ] | 35 ] |
| 35 | 36 |
| 36 public_deps = [ | 37 public_deps = [ |
| 37 "//base", | 38 "//base", |
| 38 "//ui/accessibility:ax_gen", | 39 "//ui/accessibility:ax_gen", |
| 39 "//ui/base", | 40 "//ui/base", |
| 40 "//ui/base/ime", | 41 "//ui/base/ime", |
| 41 "//ui/compositor", | 42 "//ui/compositor", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 "//ui/base:test_support", | 182 "//ui/base:test_support", |
| 182 "//ui/compositor:test_support", | 183 "//ui/compositor:test_support", |
| 183 "//ui/events:test_support", | 184 "//ui/events:test_support", |
| 184 "//ui/events:events_base", | 185 "//ui/events:events_base", |
| 185 "//ui/events/platform", | 186 "//ui/events/platform", |
| 186 "//ui/gfx", | 187 "//ui/gfx", |
| 187 "//ui/gfx/geometry", | 188 "//ui/gfx/geometry", |
| 188 "//ui/gl", | 189 "//ui/gl", |
| 189 "//ui/resources", | 190 "//ui/resources", |
| 190 "//ui/strings", | 191 "//ui/strings", |
| 192 "//ui/touch_selection", |
| 191 "//ui/wm", | 193 "//ui/wm", |
| 192 "//url", | 194 "//url", |
| 193 ] | 195 ] |
| 194 | 196 |
| 195 if (is_win) { | 197 if (is_win) { |
| 196 deps += [ | 198 deps += [ |
| 197 "//third_party/iaccessible2", | 199 "//third_party/iaccessible2", |
| 198 "//third_party/wtl", | 200 "//third_party/wtl", |
| 199 ] | 201 ] |
| 200 libs = [ | 202 libs = [ |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 "//testing/gtest", | 279 "//testing/gtest", |
| 278 "//ui/aura", | 280 "//ui/aura", |
| 279 "//ui/compositor", | 281 "//ui/compositor", |
| 280 "//ui/resources", | 282 "//ui/resources", |
| 281 "//ui/resources:ui_test_pak", | 283 "//ui/resources:ui_test_pak", |
| 282 "//ui/strings", | 284 "//ui/strings", |
| 283 "//ui/wm", | 285 "//ui/wm", |
| 284 ] | 286 ] |
| 285 } | 287 } |
| 286 } | 288 } |
| OLD | NEW |