Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: components/BUILD.gn

Issue 1424053002: Adds a flag to support "Virtual Time" to the blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another try Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | components/components_tests.gyp » ('j') | components/scheduler/child/scheduler_helper.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698