| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "//ui/gfx:test_support", | 239 "//ui/gfx:test_support", |
| 240 "//ui/gfx/geometry", | 240 "//ui/gfx/geometry", |
| 241 "//ui/gl:test_support", | 241 "//ui/gl:test_support", |
| 242 "//ui/native_theme", | 242 "//ui/native_theme", |
| 243 "//ui/resources", | 243 "//ui/resources", |
| 244 "//ui/resources:ui_test_pak", | 244 "//ui/resources:ui_test_pak", |
| 245 "//ui/strings", | 245 "//ui/strings", |
| 246 "//url", | 246 "//url", |
| 247 ] | 247 ] |
| 248 | 248 |
| 249 data_deps = [ | 249 # TODO(thakis): This should be a data_deps on //ui/resources:ui_test_pak, but |
| 250 "//ui/resources:ui_test_pak_data", | 250 # that has no effect. (See similar TODOs elsewhere ui_test.pak is listed) |
| 251 data = [ |
| 252 "$root_out_dir/ui_test.pak", |
| 251 ] | 253 ] |
| 252 | 254 |
| 253 if (is_win) { | 255 if (is_win) { |
| 254 deps += [ | 256 deps += [ |
| 255 "//build/win:default_exe_manifest", | 257 "//build/win:default_exe_manifest", |
| 256 "//third_party/iaccessible2", | 258 "//third_party/iaccessible2", |
| 257 "//third_party/wtl", | 259 "//third_party/wtl", |
| 258 ] | 260 ] |
| 259 libs = [ | 261 libs = [ |
| 260 "imm32.lib", | 262 "imm32.lib", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 "//ui/base:test_support", | 327 "//ui/base:test_support", |
| 326 "//ui/compositor", | 328 "//ui/compositor", |
| 327 "//ui/events:test_support", | 329 "//ui/events:test_support", |
| 328 "//ui/gl:test_support", | 330 "//ui/gl:test_support", |
| 329 "//ui/resources", | 331 "//ui/resources", |
| 330 "//ui/resources:ui_test_pak", | 332 "//ui/resources:ui_test_pak", |
| 331 "//ui/strings", | 333 "//ui/strings", |
| 332 ] | 334 ] |
| 333 } | 335 } |
| 334 } | 336 } |
| OLD | NEW |