| 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 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 #deps += [ "//components/constrained_window:unit_tests" ] | 340 #deps += [ "//components/constrained_window:unit_tests" ] |
| 341 } | 341 } |
| 342 if (is_win) { | 342 if (is_win) { |
| 343 deps += [ "//components/browser_watcher:unit_tests" ] | 343 deps += [ "//components/browser_watcher:unit_tests" ] |
| 344 } | 344 } |
| 345 if (is_ios) { | 345 if (is_ios) { |
| 346 deps -= [ "//components/devtools_http_handler:unit_tests" ] | 346 deps -= [ "//components/devtools_http_handler:unit_tests" ] |
| 347 } | 347 } |
| 348 | 348 |
| 349 if (!is_ios) { | 349 if (!is_ios) { |
| 350 deps += [ "//components/scheduler:unit_tests" ] | 350 deps += [ |
| 351 "//components/safe_json:unit_tests", |
| 352 "//components/scheduler:unit_tests", |
| 353 ] |
| 351 } | 354 } |
| 352 } | 355 } |
| 353 | 356 |
| 354 repack("components_tests_pak") { | 357 repack("components_tests_pak") { |
| 355 sources = [ | 358 sources = [ |
| 356 "$root_gen_dir/components/components_resources.pak", | 359 "$root_gen_dir/components/components_resources.pak", |
| 357 "$root_gen_dir/components/strings/components_strings_en-US.pak", | 360 "$root_gen_dir/components/strings/components_strings_en-US.pak", |
| 358 ] | 361 ] |
| 359 | 362 |
| 360 output = "$root_out_dir/components_tests_resources.pak" | 363 output = "$root_out_dir/components_tests_resources.pak" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 | 432 |
| 430 deps = [ | 433 deps = [ |
| 431 "//base", | 434 "//base", |
| 432 "//base/test:test_support_perf", | 435 "//base/test:test_support_perf", |
| 433 "//testing/gtest", | 436 "//testing/gtest", |
| 434 "//testing/perf", | 437 "//testing/perf", |
| 435 "//content/test:test_support", | 438 "//content/test:test_support", |
| 436 "//components/visitedlink/browser", | 439 "//components/visitedlink/browser", |
| 437 ] | 440 ] |
| 438 } | 441 } |
| OLD | NEW |