| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 #deps += [ "//components/constrained_window:unit_tests" ] | 318 #deps += [ "//components/constrained_window:unit_tests" ] |
| 319 } | 319 } |
| 320 if (is_win) { | 320 if (is_win) { |
| 321 deps += [ "//components/browser_watcher:unit_tests" ] | 321 deps += [ "//components/browser_watcher:unit_tests" ] |
| 322 } | 322 } |
| 323 if (is_ios) { | 323 if (is_ios) { |
| 324 deps -= [ "//components/devtools_http_handler:unit_tests" ] | 324 deps -= [ "//components/devtools_http_handler:unit_tests" ] |
| 325 } | 325 } |
| 326 | 326 |
| 327 if (!is_ios) { | 327 if (!is_ios) { |
| 328 deps += [ "//components/scheduler:unit_tests" ] | 328 deps += [ |
| 329 "//components/image_decoder:unit_tests", |
| 330 "//components/scheduler:unit_tests", |
| 331 ] |
| 329 } | 332 } |
| 330 } | 333 } |
| 331 | 334 |
| 332 repack("components_tests_pak") { | 335 repack("components_tests_pak") { |
| 333 sources = [ | 336 sources = [ |
| 334 "$root_gen_dir/components/components_resources.pak", | 337 "$root_gen_dir/components/components_resources.pak", |
| 335 "$root_gen_dir/components/strings/components_strings_en-US.pak", | 338 "$root_gen_dir/components/strings/components_strings_en-US.pak", |
| 336 ] | 339 ] |
| 337 | 340 |
| 338 output = "$root_out_dir/components_tests_resources.pak" | 341 output = "$root_out_dir/components_tests_resources.pak" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 | 414 |
| 412 deps = [ | 415 deps = [ |
| 413 "//base", | 416 "//base", |
| 414 "//base/test:test_support_perf", | 417 "//base/test:test_support_perf", |
| 415 "//testing/gtest", | 418 "//testing/gtest", |
| 416 "//testing/perf", | 419 "//testing/perf", |
| 417 "//content/test:test_support", | 420 "//content/test:test_support", |
| 418 "//components/visitedlink/browser", | 421 "//components/visitedlink/browser", |
| 419 ] | 422 ] |
| 420 } | 423 } |
| OLD | NEW |