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

Side by Side Diff: base/base.gyp

Issue 23132002: GTTF: Add a basic new unit test launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed gyp cycle Created 7 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
« no previous file with comments | « no previous file | base/test/DEPS » ('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 816 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 }, 827 },
828 { 828 {
829 'target_name': 'test_support_base', 829 'target_name': 'test_support_base',
830 'type': 'static_library', 830 'type': 'static_library',
831 'dependencies': [ 831 'dependencies': [
832 'base', 832 'base',
833 'base_static', 833 'base_static',
834 'base_i18n', 834 'base_i18n',
835 '../testing/gmock.gyp:gmock', 835 '../testing/gmock.gyp:gmock',
836 '../testing/gtest.gyp:gtest', 836 '../testing/gtest.gyp:gtest',
837 '../third_party/libxml/libxml.gyp:libxml',
837 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions', 838 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions',
838 ], 839 ],
839 'export_dependent_settings': [ 840 'export_dependent_settings': [
840 'base', 841 'base',
841 ], 842 ],
842 'conditions': [ 843 'conditions': [
843 ['toolkit_uses_gtk==1', { 844 ['toolkit_uses_gtk==1', {
844 'dependencies': [ 845 'dependencies': [
845 # test_suite initializes GTK. 846 # test_suite initializes GTK.
846 '../build/linux/system.gyp:gtk', 847 '../build/linux/system.gyp:gtk',
(...skipping 10 matching lines...) Expand all
857 'test/test_file_util_linux.cc', 858 'test/test_file_util_linux.cc',
858 ], 859 ],
859 }], 860 }],
860 ], 861 ],
861 'sources': [ 862 'sources': [
862 'perftimer.cc', 863 'perftimer.cc',
863 'test/expectations/expectation.cc', 864 'test/expectations/expectation.cc',
864 'test/expectations/expectation.h', 865 'test/expectations/expectation.h',
865 'test/expectations/parser.cc', 866 'test/expectations/parser.cc',
866 'test/expectations/parser.h', 867 'test/expectations/parser.h',
868 'test/gtest_xml_util.cc',
869 'test/gtest_xml_util.h',
867 'test/mock_chrome_application_mac.h', 870 'test/mock_chrome_application_mac.h',
868 'test/mock_chrome_application_mac.mm', 871 'test/mock_chrome_application_mac.mm',
869 'test/mock_devices_changed_observer.cc', 872 'test/mock_devices_changed_observer.cc',
870 'test/mock_devices_changed_observer.h', 873 'test/mock_devices_changed_observer.h',
871 'test/mock_time_provider.cc', 874 'test/mock_time_provider.cc',
872 'test/mock_time_provider.h', 875 'test/mock_time_provider.h',
873 'test/multiprocess_test.cc', 876 'test/multiprocess_test.cc',
874 'test/multiprocess_test.h', 877 'test/multiprocess_test.h',
875 'test/multiprocess_test_android.cc', 878 'test/multiprocess_test_android.cc',
876 'test/null_task_runner.cc', 879 'test/null_task_runner.cc',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 'test/test_support_ios.h', 923 'test/test_support_ios.h',
921 'test/test_support_ios.mm', 924 'test/test_support_ios.mm',
922 'test/test_switches.cc', 925 'test/test_switches.cc',
923 'test/test_switches.h', 926 'test/test_switches.h',
924 'test/test_timeouts.cc', 927 'test/test_timeouts.cc',
925 'test/test_timeouts.h', 928 'test/test_timeouts.h',
926 'test/thread_test_helper.cc', 929 'test/thread_test_helper.cc',
927 'test/thread_test_helper.h', 930 'test/thread_test_helper.h',
928 'test/trace_event_analyzer.cc', 931 'test/trace_event_analyzer.cc',
929 'test/trace_event_analyzer.h', 932 'test/trace_event_analyzer.h',
933 'test/unit_test_launcher_ios.cc',
934 'test/unit_test_launcher.cc',
935 'test/unit_test_launcher.h',
930 'test/values_test_util.cc', 936 'test/values_test_util.cc',
931 'test/values_test_util.h', 937 'test/values_test_util.h',
932 ], 938 ],
933 'target_conditions': [ 939 'target_conditions': [
934 ['OS == "ios"', { 940 ['OS == "ios"', {
935 'sources/': [ 941 'sources/': [
936 # Pull in specific Mac files for iOS (which have been filtered out 942 # Pull in specific Mac files for iOS (which have been filtered out
937 # by file name rules). 943 # by file name rules).
938 ['include', '^test/test_file_util_mac\\.cc$'], 944 ['include', '^test/test_file_util_mac\\.cc$'],
939 ], 945 ],
946 'sources!': [
947 # iOS uses its own unit test launcher.
948 'test/unit_test_launcher.cc',
949 ],
940 }], 950 }],
941 ], # target_conditions 951 ], # target_conditions
942 }, 952 },
943 { 953 {
944 'target_name': 'test_support_perf', 954 'target_name': 'test_support_perf',
945 'type': 'static_library', 955 'type': 'static_library',
946 'dependencies': [ 956 'dependencies': [
947 'base', 957 'base',
948 '../testing/gtest.gyp:gtest', 958 '../testing/gtest.gyp:gtest',
949 ], 959 ],
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 'base_unittests.isolate', 1316 'base_unittests.isolate',
1307 ], 1317 ],
1308 'sources': [ 1318 'sources': [
1309 'base_unittests.isolate', 1319 'base_unittests.isolate',
1310 ], 1320 ],
1311 }, 1321 },
1312 ], 1322 ],
1313 }], 1323 }],
1314 ], 1324 ],
1315 } 1325 }
OLDNEW
« no previous file with comments | « no previous file | base/test/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698