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

Side by Side Diff: components/components_tests.gyp

Issue 1898233002: Report expected task queueing time via UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove export. Fix windows. Created 4 years, 5 months 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
« no previous file with comments | « components/BUILD.gn ('k') | components/scheduler/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 'safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc', 709 'safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc',
710 'safe_browsing_db/v4_protocol_manager_util_unittest.cc', 710 'safe_browsing_db/v4_protocol_manager_util_unittest.cc',
711 'safe_browsing_db/v4_store_unittest.cc', 711 'safe_browsing_db/v4_store_unittest.cc',
712 'safe_browsing_db/v4_update_protocol_manager_unittest.cc', 712 'safe_browsing_db/v4_update_protocol_manager_unittest.cc',
713 ], 713 ],
714 'safe_json_unittest_sources': [ 714 'safe_json_unittest_sources': [
715 'safe_json/json_sanitizer_unittest.cc', 715 'safe_json/json_sanitizer_unittest.cc',
716 'safe_json/testing_json_parser_unittest.cc', 716 'safe_json/testing_json_parser_unittest.cc',
717 ], 717 ],
718 'scheduler_unittest_sources': [ 718 'scheduler_unittest_sources': [
719 'scheduler/base/queueing_time_estimator_unittest.cc',
719 'scheduler/base/task_queue_manager_delegate_for_test.cc', 720 'scheduler/base/task_queue_manager_delegate_for_test.cc',
720 'scheduler/base/task_queue_manager_delegate_for_test.h', 721 'scheduler/base/task_queue_manager_delegate_for_test.h',
721 'scheduler/base/task_queue_manager_unittest.cc', 722 'scheduler/base/task_queue_manager_unittest.cc',
722 'scheduler/base/task_queue_selector_unittest.cc', 723 'scheduler/base/task_queue_selector_unittest.cc',
723 'scheduler/base/test_always_fail_time_source.cc', 724 'scheduler/base/test_count_uses_time_source.cc',
724 'scheduler/base/test_always_fail_time_source.h', 725 'scheduler/base/test_count_uses_time_source.h',
726 'scheduler/base/test_task_time_tracker.h',
725 'scheduler/base/test_time_source.cc', 727 'scheduler/base/test_time_source.cc',
726 'scheduler/base/test_time_source.h', 728 'scheduler/base/test_time_source.h',
727 'scheduler/base/time_domain_unittest.cc', 729 'scheduler/base/time_domain_unittest.cc',
728 'scheduler/base/work_queue_sets_unittest.cc', 730 'scheduler/base/work_queue_sets_unittest.cc',
729 'scheduler/child/idle_helper_unittest.cc', 731 'scheduler/child/idle_helper_unittest.cc',
730 'scheduler/child/scheduler_helper_unittest.cc', 732 'scheduler/child/scheduler_helper_unittest.cc',
731 'scheduler/child/scheduler_tqm_delegate_for_test.cc', 733 'scheduler/child/scheduler_tqm_delegate_for_test.cc',
732 'scheduler/child/scheduler_tqm_delegate_for_test.h', 734 'scheduler/child/scheduler_tqm_delegate_for_test.h',
733 'scheduler/child/scheduler_tqm_delegate_impl_unittest.cc', 735 'scheduler/child/scheduler_tqm_delegate_impl_unittest.cc',
734 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc', 736 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc',
(...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1874 'components.gyp:visitedlink_browser', 1876 'components.gyp:visitedlink_browser',
1875 'scheduler/scheduler.gyp:scheduler', 1877 'scheduler/scheduler.gyp:scheduler',
1876 ], 1878 ],
1877 'include_dirs': [ 1879 'include_dirs': [
1878 '..', 1880 '..',
1879 ], 1881 ],
1880 'sources': [ 1882 'sources': [
1881 'scheduler/base/task_queue_manager_delegate_for_test.cc', 1883 'scheduler/base/task_queue_manager_delegate_for_test.cc',
1882 'scheduler/base/task_queue_manager_delegate_for_test.h', 1884 'scheduler/base/task_queue_manager_delegate_for_test.h',
1883 'scheduler/base/task_queue_manager_perftest.cc', 1885 'scheduler/base/task_queue_manager_perftest.cc',
1886 'scheduler/base/test_task_time_tracker.h',
1884 'visitedlink/test/visitedlink_perftest.cc', 1887 'visitedlink/test/visitedlink_perftest.cc',
1885 ], 1888 ],
1886 'conditions': [ 1889 'conditions': [
1887 ['OS == "android"', { 1890 ['OS == "android"', {
1888 'dependencies': [ 1891 'dependencies': [
1889 '../testing/android/native_test.gyp:native_test_native_code', 1892 '../testing/android/native_test.gyp:native_test_native_code',
1890 ], 1893 ],
1891 }], 1894 }],
1892 ], 1895 ],
1893 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1896 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
2046 'dependencies': [ 2049 'dependencies': [
2047 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2050 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2048 ], 2051 ],
2049 }], 2052 }],
2050 ], 2053 ],
2051 }, 2054 },
2052 ], 2055 ],
2053 }], 2056 }],
2054 ], 2057 ],
2055 } 2058 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/scheduler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698