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

Side by Side Diff: base/base.gyp

Issue 1154313003: Non-SFI mode: Implement test launcher for nacl_helper_nonsfi_unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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/base_nacl.gyp » ('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 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 'toolsets': ['host', 'target'], 898 'toolsets': ['host', 'target'],
899 }], 899 }],
900 ], 900 ],
901 'sources': [ 901 'sources': [
902 'test/expectations/expectation.cc', 902 'test/expectations/expectation.cc',
903 'test/expectations/expectation.h', 903 'test/expectations/expectation.h',
904 'test/expectations/parser.cc', 904 'test/expectations/parser.cc',
905 'test/expectations/parser.h', 905 'test/expectations/parser.h',
906 'test/gtest_util.cc', 906 'test/gtest_util.cc',
907 'test/gtest_util.h', 907 'test/gtest_util.h',
908 'test/gtest_xml_unittest_result_printer.cc',
909 'test/gtest_xml_unittest_result_printer.h',
908 'test/gtest_xml_util.cc', 910 'test/gtest_xml_util.cc',
909 'test/gtest_xml_util.h', 911 'test/gtest_xml_util.h',
910 'test/histogram_tester.cc', 912 'test/histogram_tester.cc',
911 'test/histogram_tester.h', 913 'test/histogram_tester.h',
912 'test/ios/wait_util.h', 914 'test/ios/wait_util.h',
913 'test/ios/wait_util.mm', 915 'test/ios/wait_util.mm',
914 'test/launcher/test_launcher.cc', 916 'test/launcher/test_launcher.cc',
915 'test/launcher/test_launcher.h', 917 'test/launcher/test_launcher.h',
916 'test/launcher/test_result.cc', 918 'test/launcher/test_result.cc',
917 'test/launcher/test_result.h', 919 'test/launcher/test_result.h',
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 ], 1036 ],
1035 'sources': [ 1037 'sources': [
1036 'test/run_all_perftests.cc', 1038 'test/run_all_perftests.cc',
1037 ], 1039 ],
1038 'direct_dependent_settings': { 1040 'direct_dependent_settings': {
1039 'defines': [ 1041 'defines': [
1040 'PERF_TEST', 1042 'PERF_TEST',
1041 ], 1043 ],
1042 }, 1044 },
1043 }, 1045 },
1046 {
1047 'target_name': 'test_launcher_nacl_nonsfi',
1048 'conditions': [
1049 ['disable_nacl==0 and disable_nacl_untrusted==0 and enable_nacl_nonsfi_t est==1', {
1050 'type': 'static_library',
1051 'sources': [
1052 'test/launcher/test_launcher_nacl_nonsfi.cc',
1053 ],
1054 'dependencies': [
1055 'test_support_base',
1056 ],
1057 }, {
1058 'type': 'none',
1059 }],
1060 ],
1061 },
1044 ], 1062 ],
1045 'conditions': [ 1063 'conditions': [
1046 ['OS=="ios" and "<(GENERATOR)"=="ninja"', { 1064 ['OS=="ios" and "<(GENERATOR)"=="ninja"', {
1047 'targets': [ 1065 'targets': [
1048 { 1066 {
1049 'target_name': 'test_launcher', 1067 'target_name': 'test_launcher',
1050 'toolsets': ['host'], 1068 'toolsets': ['host'],
1051 'type': 'executable', 1069 'type': 'executable',
1052 'dependencies': [ 1070 'dependencies': [
1053 'test_support_base', 1071 'test_support_base',
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1622 'dependencies': [ 1640 'dependencies': [
1623 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1641 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1624 ], 1642 ],
1625 }], 1643 }],
1626 ], 1644 ],
1627 }, 1645 },
1628 ], 1646 ],
1629 }], 1647 }],
1630 ], 1648 ],
1631 } 1649 }
OLDNEW
« no previous file with comments | « no previous file | base/base_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698