| 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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 ":components_browsertests_java", | 412 ":components_browsertests_java", |
| 413 ":components_browsertests_manifest", | 413 ":components_browsertests_manifest", |
| 414 ] | 414 ] |
| 415 } | 415 } |
| 416 | 416 |
| 417 if (is_linux) { | 417 if (is_linux) { |
| 418 # content_extractor_browsertest is a standalone content extraction tool buil
t as | 418 # content_extractor_browsertest is a standalone content extraction tool buil
t as |
| 419 # a MANUAL component_browsertest. | 419 # a MANUAL component_browsertest. |
| 420 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ] | 420 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ] |
| 421 deps += [ | 421 deps += [ |
| 422 "//base:prefs_test_support", | |
| 423 "//components/leveldb_proto", | 422 "//components/leveldb_proto", |
| 424 "//components/pref_registry:test_support", | 423 "//components/pref_registry:test_support", |
| 424 "//components/prefs:test_support", |
| 425 ] | 425 ] |
| 426 } | 426 } |
| 427 | 427 |
| 428 if (enable_basic_printing || enable_print_preview) { | 428 if (enable_basic_printing || enable_print_preview) { |
| 429 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] | 429 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] |
| 430 deps += [ "//components/printing/test:test_support" ] | 430 deps += [ "//components/printing/test:test_support" ] |
| 431 } | 431 } |
| 432 } | 432 } |
| 433 | 433 |
| 434 test("components_perftests") { | 434 test("components_perftests") { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 451 if (!is_ios) { | 451 if (!is_ios) { |
| 452 deps += [ | 452 deps += [ |
| 453 "//base", | 453 "//base", |
| 454 "//base/test:test_support_perf", | 454 "//base/test:test_support_perf", |
| 455 "//components/scheduler", | 455 "//components/scheduler", |
| 456 "//components/visitedlink/browser", | 456 "//components/visitedlink/browser", |
| 457 "//content/test:test_support", | 457 "//content/test:test_support", |
| 458 ] | 458 ] |
| 459 } | 459 } |
| 460 } | 460 } |
| OLD | NEW |