| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 #deps += [ "//components/constrained_window:unit_tests" ] | 316 #deps += [ "//components/constrained_window:unit_tests" ] |
| 317 } | 317 } |
| 318 if (is_win) { | 318 if (is_win) { |
| 319 deps += [ "//components/browser_watcher:unit_tests" ] | 319 deps += [ "//components/browser_watcher:unit_tests" ] |
| 320 } | 320 } |
| 321 if (is_ios) { | 321 if (is_ios) { |
| 322 deps -= [ "//components/devtools_http_handler:unit_tests" ] | 322 deps -= [ "//components/devtools_http_handler:unit_tests" ] |
| 323 } | 323 } |
| 324 | 324 |
| 325 if (!is_ios) { | 325 if (!is_ios) { |
| 326 deps += [ "//components/scheduler:unit_tests" ] | 326 deps += [ |
| 327 "//components/image_decoder:unit_tests", |
| 328 "//components/scheduler:unit_tests", |
| 329 ] |
| 327 } | 330 } |
| 328 } | 331 } |
| 329 | 332 |
| 330 repack("components_tests_pak") { | 333 repack("components_tests_pak") { |
| 331 sources = [ | 334 sources = [ |
| 332 "$root_gen_dir/components/components_resources.pak", | 335 "$root_gen_dir/components/components_resources.pak", |
| 333 "$root_gen_dir/components/strings/components_strings_en-US.pak", | 336 "$root_gen_dir/components/strings/components_strings_en-US.pak", |
| 334 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 337 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 335 "$root_gen_dir/ui/resources/webui_resources.pak", | 338 "$root_gen_dir/ui/resources/webui_resources.pak", |
| 336 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 339 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| (...skipping 92 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 |