| 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 } | 603 } |
| 604 | 604 |
| 605 if (enable_basic_printing || enable_print_preview) { | 605 if (enable_basic_printing || enable_print_preview) { |
| 606 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] | 606 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] |
| 607 deps += [ "//components/printing/test:test_support" ] | 607 deps += [ "//components/printing/test:test_support" ] |
| 608 } | 608 } |
| 609 } | 609 } |
| 610 | 610 |
| 611 test("components_perftests") { | 611 test("components_perftests") { |
| 612 sources = [ | 612 sources = [ |
| 613 "scheduler/base/nestable_task_runner_for_test.cc", | 613 "scheduler/base/task_queue_manager_delegate_for_test.cc", |
| 614 "scheduler/base/nestable_task_runner_for_test.h", | 614 "scheduler/base/task_queue_manager_delegate_for_test.h", |
| 615 "scheduler/base/task_queue_manager_perftest.cc", | 615 "scheduler/base/task_queue_manager_perftest.cc", |
| 616 "visitedlink/test/visitedlink_perftest.cc", | 616 "visitedlink/test/visitedlink_perftest.cc", |
| 617 ] | 617 ] |
| 618 | 618 |
| 619 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 619 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 620 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 620 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 621 | 621 |
| 622 deps = [ | 622 deps = [ |
| 623 "//testing/gtest", | 623 "//testing/gtest", |
| 624 "//testing/perf", | 624 "//testing/perf", |
| 625 ] | 625 ] |
| 626 if (!is_ios) { | 626 if (!is_ios) { |
| 627 deps += [ | 627 deps += [ |
| 628 "//base", | 628 "//base", |
| 629 "//base/test:test_support_perf", | 629 "//base/test:test_support_perf", |
| 630 "//content/test:test_support", | 630 "//content/test:test_support", |
| 631 "//components/visitedlink/browser", | 631 "//components/visitedlink/browser", |
| 632 ] | 632 ] |
| 633 } | 633 } |
| 634 } | 634 } |
| OLD | NEW |