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

Side by Side Diff: base/base.gyp

Issue 23985006: base: Split logging functions and PerfTimeLogger out of perftimer.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix visitedlink Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/test/perf_log.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 'test/mock_devices_changed_observer.h', 879 'test/mock_devices_changed_observer.h',
880 'test/mock_time_provider.cc', 880 'test/mock_time_provider.cc',
881 'test/mock_time_provider.h', 881 'test/mock_time_provider.h',
882 'test/multiprocess_test.cc', 882 'test/multiprocess_test.cc',
883 'test/multiprocess_test.h', 883 'test/multiprocess_test.h',
884 'test/multiprocess_test_android.cc', 884 'test/multiprocess_test_android.cc',
885 'test/null_task_runner.cc', 885 'test/null_task_runner.cc',
886 'test/null_task_runner.h', 886 'test/null_task_runner.h',
887 'test/parallel_test_launcher.cc', 887 'test/parallel_test_launcher.cc',
888 'test/parallel_test_launcher.h', 888 'test/parallel_test_launcher.h',
889 'test/perf_log.cc',
890 'test/perf_log.h',
889 'test/perf_test_suite.cc', 891 'test/perf_test_suite.cc',
890 'test/perf_test_suite.h', 892 'test/perf_test_suite.h',
893 'test/perf_time_logger.cc',
894 'test/perf_time_logger.h',
891 'test/perftimer.cc', 895 'test/perftimer.cc',
896 'test/perftimer.h',
892 'test/power_monitor_test_base.cc', 897 'test/power_monitor_test_base.cc',
893 'test/power_monitor_test_base.h', 898 'test/power_monitor_test_base.h',
894 'test/scoped_locale.cc', 899 'test/scoped_locale.cc',
895 'test/scoped_locale.h', 900 'test/scoped_locale.h',
896 'test/scoped_path_override.cc', 901 'test/scoped_path_override.cc',
897 'test/scoped_path_override.h', 902 'test/scoped_path_override.h',
898 'test/sequenced_task_runner_test_template.cc', 903 'test/sequenced_task_runner_test_template.cc',
899 'test/sequenced_task_runner_test_template.h', 904 'test/sequenced_task_runner_test_template.h',
900 'test/sequenced_worker_pool_owner.cc', 905 'test/sequenced_worker_pool_owner.cc',
901 'test/sequenced_worker_pool_owner.h', 906 'test/sequenced_worker_pool_owner.h',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 'test/unit_test_launcher.cc', 962 'test/unit_test_launcher.cc',
958 ], 963 ],
959 }], 964 }],
960 ], # target_conditions 965 ], # target_conditions
961 }, 966 },
962 { 967 {
963 'target_name': 'test_support_perf', 968 'target_name': 'test_support_perf',
964 'type': 'static_library', 969 'type': 'static_library',
965 'dependencies': [ 970 'dependencies': [
966 'base', 971 'base',
972 'test_support_base',
967 '../testing/gtest.gyp:gtest', 973 '../testing/gtest.gyp:gtest',
968 ], 974 ],
969 'sources': [ 975 'sources': [
970 'test/perftimer.cc',
971 'test/run_all_perftests.cc', 976 'test/run_all_perftests.cc',
972 ], 977 ],
973 'direct_dependent_settings': { 978 'direct_dependent_settings': {
974 'defines': [ 979 'defines': [
975 'PERF_TEST', 980 'PERF_TEST',
976 ], 981 ],
977 }, 982 },
978 'conditions': [ 983 'conditions': [
979 ['toolkit_uses_gtk==1', { 984 ['toolkit_uses_gtk==1', {
980 'dependencies': [ 985 'dependencies': [
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 'base_unittests.isolate', 1330 'base_unittests.isolate',
1326 ], 1331 ],
1327 'sources': [ 1332 'sources': [
1328 'base_unittests.isolate', 1333 'base_unittests.isolate',
1329 ], 1334 ],
1330 }, 1335 },
1331 ], 1336 ],
1332 }], 1337 }],
1333 ], 1338 ],
1334 } 1339 }
OLDNEW
« no previous file with comments | « no previous file | base/test/perf_log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698