| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "//ui/events:test_support", | 207 "//ui/events:test_support", |
| 208 "//ui/events/platform", | 208 "//ui/events/platform", |
| 209 "//ui/gfx", | 209 "//ui/gfx", |
| 210 "//ui/gfx/geometry", | 210 "//ui/gfx/geometry", |
| 211 "//ui/gl", | 211 "//ui/gl", |
| 212 "//ui/resources", | 212 "//ui/resources", |
| 213 "//ui/strings", | 213 "//ui/strings", |
| 214 "//url", | 214 "//url", |
| 215 ] | 215 ] |
| 216 | 216 |
| 217 data_deps = [ |
| 218 "//ui/resources:ui_test_pak", |
| 219 ] |
| 220 |
| 217 if (is_win) { | 221 if (is_win) { |
| 218 deps += [ | 222 deps += [ |
| 219 "//third_party/iaccessible2", | 223 "//third_party/iaccessible2", |
| 220 "//third_party/wtl", | 224 "//third_party/wtl", |
| 221 ] | 225 ] |
| 222 libs = [ | 226 libs = [ |
| 223 "imm32.lib", | 227 "imm32.lib", |
| 224 "oleacc.lib", | 228 "oleacc.lib", |
| 225 "comctl32.lib", | 229 "comctl32.lib", |
| 226 ] | 230 ] |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 "//skia", | 302 "//skia", |
| 299 "//testing/gtest", | 303 "//testing/gtest", |
| 300 "//ui/base:test_support", | 304 "//ui/base:test_support", |
| 301 "//ui/compositor", | 305 "//ui/compositor", |
| 302 "//ui/resources", | 306 "//ui/resources", |
| 303 "//ui/resources:ui_test_pak", | 307 "//ui/resources:ui_test_pak", |
| 304 "//ui/strings", | 308 "//ui/strings", |
| 305 ] | 309 ] |
| 306 } | 310 } |
| 307 } | 311 } |
| OLD | NEW |