| OLD | NEW |
| 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 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 'variables': { | 1031 'variables': { |
| 1032 'test_suite_name': 'components_unittests', | 1032 'test_suite_name': 'components_unittests', |
| 1033 }, | 1033 }, |
| 1034 'includes': [ '../build/apk_test.gypi' ], | 1034 'includes': [ '../build/apk_test.gypi' ], |
| 1035 }, | 1035 }, |
| 1036 ], | 1036 ], |
| 1037 }], | 1037 }], |
| 1038 ], | 1038 ], |
| 1039 }], | 1039 }], |
| 1040 ['OS!="ios"', { | 1040 ['OS!="ios"', { |
| 1041 'conditions': [ | |
| 1042 ['test_isolation_mode != "noop"', { | |
| 1043 'targets': [ | |
| 1044 { | |
| 1045 'target_name': 'components_browsertests_run', | |
| 1046 'type': 'none', | |
| 1047 'dependencies': [ 'components_browsertests' ], | |
| 1048 'includes': [ | |
| 1049 '../build/isolate.gypi', | |
| 1050 ], | |
| 1051 'sources': [ | |
| 1052 'components_browsertests.isolate', | |
| 1053 ], | |
| 1054 'conditions': [ | |
| 1055 ['use_x11==1', { | |
| 1056 'dependencies': [ | |
| 1057 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | |
| 1058 ], | |
| 1059 }], | |
| 1060 ], | |
| 1061 }, | |
| 1062 ], | |
| 1063 }], | |
| 1064 ], | |
| 1065 'targets': [ | 1041 'targets': [ |
| 1066 { | 1042 { |
| 1067 'target_name': 'components_browsertests', | 1043 'target_name': 'components_browsertests', |
| 1068 'type': '<(gtest_target_type)', | 1044 'type': '<(gtest_target_type)', |
| 1069 'defines!': ['CONTENT_IMPLEMENTATION'], | 1045 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 1070 'dependencies': [ | 1046 'dependencies': [ |
| 1071 'components.gyp:autofill_content_browser', | 1047 'components.gyp:autofill_content_browser', |
| 1072 'components.gyp:autofill_content_renderer', | 1048 'components.gyp:autofill_content_renderer', |
| 1073 'components.gyp:password_manager_content_renderer', | 1049 'components.gyp:password_manager_content_renderer', |
| 1074 'components.gyp:pref_registry_test_support', | 1050 'components.gyp:pref_registry_test_support', |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1185 '../build/isolate.gypi', | 1161 '../build/isolate.gypi', |
| 1186 ], | 1162 ], |
| 1187 'sources': [ | 1163 'sources': [ |
| 1188 'components_unittests.isolate', | 1164 'components_unittests.isolate', |
| 1189 ], | 1165 ], |
| 1190 }, | 1166 }, |
| 1191 ], | 1167 ], |
| 1192 }], | 1168 }], |
| 1193 ], | 1169 ], |
| 1194 } | 1170 } |
| OLD | NEW |