| 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("//build_overrides/webrtc.gni") | 7 import("//build_overrides/webrtc.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 deps += [ "//components/browser_watcher:unit_tests" ] | 262 deps += [ "//components/browser_watcher:unit_tests" ] |
| 263 } | 263 } |
| 264 | 264 |
| 265 if (enable_basic_printing || enable_print_preview) { | 265 if (enable_basic_printing || enable_print_preview) { |
| 266 deps += [ | 266 deps += [ |
| 267 "//components/printing/browser", | 267 "//components/printing/browser", |
| 268 "//components/printing/common", | 268 "//components/printing/common", |
| 269 "//components/printing/renderer", | 269 "//components/printing/renderer", |
| 270 ] | 270 ] |
| 271 } | 271 } |
| 272 |
| 273 if (safe_browsing_mode == 2) { |
| 274 deps += [ "//components/safe_browsing_db:unit_tests_mobile" ] |
| 275 } |
| 272 } | 276 } |
| 273 | 277 |
| 274 repack("components_tests_pak") { | 278 repack("components_tests_pak") { |
| 275 sources = [ | 279 sources = [ |
| 276 "$root_gen_dir/components/components_resources.pak", | 280 "$root_gen_dir/components/components_resources.pak", |
| 277 "$root_gen_dir/components/strings/components_strings_en-US.pak", | 281 "$root_gen_dir/components/strings/components_strings_en-US.pak", |
| 278 ] | 282 ] |
| 279 | 283 |
| 280 output = "$root_out_dir/components_tests_resources.pak" | 284 output = "$root_out_dir/components_tests_resources.pak" |
| 281 deps = [ | 285 deps = [ |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 if (!is_ios) { | 455 if (!is_ios) { |
| 452 deps += [ | 456 deps += [ |
| 453 "//base", | 457 "//base", |
| 454 "//base/test:test_support_perf", | 458 "//base/test:test_support_perf", |
| 455 "//components/scheduler", | 459 "//components/scheduler", |
| 456 "//components/visitedlink/browser", | 460 "//components/visitedlink/browser", |
| 457 "//content/test:test_support", | 461 "//content/test:test_support", |
| 458 ] | 462 ] |
| 459 } | 463 } |
| 460 } | 464 } |
| OLD | NEW |