| 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 } | 569 } |
| 570 | 570 |
| 571 if (enable_basic_printing || enable_print_preview) { | 571 if (enable_basic_printing || enable_print_preview) { |
| 572 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] | 572 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] |
| 573 deps += [ "//components/printing/test:test_support" ] | 573 deps += [ "//components/printing/test:test_support" ] |
| 574 } | 574 } |
| 575 } | 575 } |
| 576 | 576 |
| 577 test("components_perftests") { | 577 test("components_perftests") { |
| 578 sources = [ | 578 sources = [ |
| 579 "scheduler/child/task_queue_manager_perftest.cc", | 579 "scheduler/base/nestable_task_runner_for_test.cc", |
| 580 "scheduler/base/nestable_task_runner_for_test.h", |
| 581 "scheduler/base/task_queue_manager_perftest.cc", |
| 580 "visitedlink/test/visitedlink_perftest.cc", | 582 "visitedlink/test/visitedlink_perftest.cc", |
| 581 ] | 583 ] |
| 582 | 584 |
| 583 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 585 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 584 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 586 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 585 | 587 |
| 586 deps = [ | 588 deps = [ |
| 587 "//testing/gtest", | 589 "//testing/gtest", |
| 588 "//testing/perf", | 590 "//testing/perf", |
| 589 ] | 591 ] |
| 590 if (!is_ios) { | 592 if (!is_ios) { |
| 591 deps += [ | 593 deps += [ |
| 592 "//base", | 594 "//base", |
| 593 "//base/test:test_support_perf", | 595 "//base/test:test_support_perf", |
| 594 "//content/test:test_support", | 596 "//content/test:test_support", |
| 595 "//components/visitedlink/browser", | 597 "//components/visitedlink/browser", |
| 596 ] | 598 ] |
| 597 } | 599 } |
| 598 } | 600 } |
| OLD | NEW |