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

Side by Side Diff: components/components_tests.gyp

Issue 1315463002: [Startup Tracing] Add --trace-config-file flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 'sync_driver/non_blocking_data_type_controller_unittest.cc', 602 'sync_driver/non_blocking_data_type_controller_unittest.cc',
603 'sync_driver/non_ui_data_type_controller_unittest.cc', 603 'sync_driver/non_ui_data_type_controller_unittest.cc',
604 'sync_driver/shared_change_processor_unittest.cc', 604 'sync_driver/shared_change_processor_unittest.cc',
605 'sync_driver/sync_policy_handler_unittest.cc', 605 'sync_driver/sync_policy_handler_unittest.cc',
606 'sync_driver/sync_prefs_unittest.cc', 606 'sync_driver/sync_prefs_unittest.cc',
607 'sync_driver/sync_stopped_reporter_unittest.cc', 607 'sync_driver/sync_stopped_reporter_unittest.cc',
608 'sync_driver/system_encryptor_unittest.cc', 608 'sync_driver/system_encryptor_unittest.cc',
609 'sync_driver/tab_node_pool_unittest.cc', 609 'sync_driver/tab_node_pool_unittest.cc',
610 'sync_driver/ui_data_type_controller_unittest.cc', 610 'sync_driver/ui_data_type_controller_unittest.cc',
611 ], 611 ],
612 'tracing_unittest_sources': [
613 'tracing/trace_config_file_unittest.cc',
614 ],
612 'translate_unittest_sources': [ 615 'translate_unittest_sources': [
613 'translate/core/browser/language_state_unittest.cc', 616 'translate/core/browser/language_state_unittest.cc',
614 'translate/core/browser/translate_browser_metrics_unittest.cc', 617 'translate/core/browser/translate_browser_metrics_unittest.cc',
615 'translate/core/browser/translate_language_list_unittest.cc', 618 'translate/core/browser/translate_language_list_unittest.cc',
616 'translate/core/browser/translate_prefs_unittest.cc', 619 'translate/core/browser/translate_prefs_unittest.cc',
617 'translate/core/browser/translate_script_unittest.cc', 620 'translate/core/browser/translate_script_unittest.cc',
618 'translate/core/common/translate_metrics_unittest.cc', 621 'translate/core/common/translate_metrics_unittest.cc',
619 'translate/core/common/translate_util_unittest.cc', 622 'translate/core/common/translate_util_unittest.cc',
620 'translate/core/language_detection/language_detection_util_unittest.cc', 623 'translate/core/language_detection/language_detection_util_unittest.cc',
621 # TODO(GYP) bug 523060: these translate tests on iOS. 624 # TODO(GYP) bug 523060: these translate tests on iOS.
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
1145 'dependencies!': [ 1148 'dependencies!': [
1146 'components.gyp:storage_monitor', 1149 'components.gyp:storage_monitor',
1147 'components.gyp:storage_monitor_test_support', 1150 'components.gyp:storage_monitor_test_support',
1148 'components.gyp:web_modal', 1151 'components.gyp:web_modal',
1149 'components.gyp:web_modal_test_support', 1152 'components.gyp:web_modal_test_support',
1150 ], 1153 ],
1151 }], 1154 }],
1152 ['OS != "android"', { 1155 ['OS != "android"', {
1153 'sources': [ 1156 'sources': [
1154 '<@(invalidation_unittest_sources)', 1157 '<@(invalidation_unittest_sources)',
1158 '<@(tracing_unittest_sources)',
1159 ],
1160 'dependencies': [
1161 'tracing.gyp:tracing',
1155 ], 1162 ],
1156 }], 1163 }],
1157 ['OS != "ios" and OS != "android"', { 1164 ['OS != "ios" and OS != "android"', {
1158 'sources': [ 1165 'sources': [
1159 '<@(audio_modem_unittest_sources)', 1166 '<@(audio_modem_unittest_sources)',
1160 '<@(copresence_unittest_sources)', 1167 '<@(copresence_unittest_sources)',
1161 '<@(feedback_unittest_sources)', 1168 '<@(feedback_unittest_sources)',
1162 '<@(proximity_auth_unittest_sources)', 1169 '<@(proximity_auth_unittest_sources)',
1163 ], 1170 ],
1164 'sources!': [ 1171 'sources!': [
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
1601 'invalidation/impl/android/junit/', 1608 'invalidation/impl/android/junit/',
1602 'policy/android/junit/' 1609 'policy/android/junit/'
1603 ], 1610 ],
1604 }, 1611 },
1605 'includes': [ '../build/host_jar.gypi' ], 1612 'includes': [ '../build/host_jar.gypi' ],
1606 }, 1613 },
1607 ], 1614 ],
1608 }], 1615 }],
1609 ], 1616 ],
1610 } 1617 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698