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/base/task_queue_manager_perftest.cc", | 579 "scheduler/child/task_queue_manager_perftest.cc", |
580 "visitedlink/test/visitedlink_perftest.cc", | 580 "visitedlink/test/visitedlink_perftest.cc", |
581 ] | 581 ] |
582 | 582 |
583 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 583 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
584 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 584 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
585 | 585 |
586 deps = [ | 586 deps = [ |
587 "//testing/gtest", | 587 "//testing/gtest", |
588 "//testing/perf", | 588 "//testing/perf", |
589 ] | 589 ] |
590 if (!is_ios) { | 590 if (!is_ios) { |
591 deps += [ | 591 deps += [ |
592 "//base", | 592 "//base", |
593 "//base/test:test_support_perf", | 593 "//base/test:test_support_perf", |
594 "//content/test:test_support", | 594 "//content/test:test_support", |
595 "//components/visitedlink/browser", | 595 "//components/visitedlink/browser", |
596 ] | 596 ] |
597 } | 597 } |
598 } | 598 } |
OLD | NEW |