| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 ":components_browsertests_java", | 464 ":components_browsertests_java", |
| 465 ] | 465 ] |
| 466 } | 466 } |
| 467 | 467 |
| 468 if (is_linux) { | 468 if (is_linux) { |
| 469 # content_extractor_browsertest is a standalone content extraction tool bu
ilt as | 469 # content_extractor_browsertest is a standalone content extraction tool bu
ilt as |
| 470 # a MANUAL component_browsertest. | 470 # a MANUAL component_browsertest. |
| 471 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ] | 471 sources += [ "dom_distiller/standalone/content_extractor_browsertest.cc" ] |
| 472 deps += [ | 472 deps += [ |
| 473 "//components/leveldb_proto", | 473 "//components/leveldb_proto", |
| 474 "//components/pref_registry:test_support", | |
| 475 "//components/prefs:test_support", | 474 "//components/prefs:test_support", |
| 475 "//components/sync_preferences:test_support", |
| 476 ] | 476 ] |
| 477 } | 477 } |
| 478 | 478 |
| 479 if (enable_basic_printing || enable_print_preview) { | 479 if (enable_basic_printing || enable_print_preview) { |
| 480 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] | 480 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] |
| 481 deps += [ "//components/printing/test:test_support" ] | 481 deps += [ "//components/printing/test:test_support" ] |
| 482 } | 482 } |
| 483 } | 483 } |
| 484 | 484 |
| 485 test("components_perftests") { | 485 test("components_perftests") { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 502 "//testing/perf", | 502 "//testing/perf", |
| 503 "//url", | 503 "//url", |
| 504 ] | 504 ] |
| 505 | 505 |
| 506 if (!is_ios) { | 506 if (!is_ios) { |
| 507 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per
ftest.cc" ] | 507 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per
ftest.cc" ] |
| 508 deps += [ "//components/discardable_memory/common" ] | 508 deps += [ "//components/discardable_memory/common" ] |
| 509 } | 509 } |
| 510 } | 510 } |
| 511 } | 511 } |
| OLD | NEW |