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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
859 'sources/': [ | 859 'sources/': [ |
860 ['exclude', '^storage_monitor/'], | 860 ['exclude', '^storage_monitor/'], |
861 ], | 861 ], |
862 }], | 862 }], |
863 ['OS=="win" and win_use_allocator_shim==1', { | 863 ['OS=="win" and win_use_allocator_shim==1', { |
864 'dependencies': [ | 864 'dependencies': [ |
865 '../base/allocator/allocator.gyp:allocator', | 865 '../base/allocator/allocator.gyp:allocator', |
866 ], | 866 ], |
867 }], | 867 }], |
868 ['OS=="linux" and component=="shared_library" and use_allocator!="no
ne"', { | 868 ['OS=="linux" and component=="shared_library" and use_allocator!="no
ne"', { |
869 'dependencies': [ | 869 'dependencies': [ |
870 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 870 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
871 ], | 871 ], |
872 'link_settings': { | 872 'link_settings': { |
873 'ldflags': ['-rdynamic'], | 873 'ldflags': ['-rdynamic'], |
874 }, | 874 }, |
875 }], | 875 }], |
876 ['configuration_policy==1', { | 876 ['configuration_policy==1', { |
877 'dependencies': [ | 877 'dependencies': [ |
878 'components.gyp:policy_component', | 878 'components.gyp:policy_component', |
879 'components.gyp:policy_component_test_support', | 879 'components.gyp:policy_component_test_support', |
880 'components.gyp:policy_test_support', | 880 'components.gyp:policy_test_support', |
881 ], | 881 ], |
882 'sources': [ | 882 'sources': [ |
883 'policy/core/browser/autofill_policy_handler_unittest.cc', | 883 'policy/core/browser/autofill_policy_handler_unittest.cc', |
884 'policy/core/browser/browser_policy_connector_unittest.cc', | 884 'policy/core/browser/browser_policy_connector_unittest.cc', |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1125 }], | 1125 }], |
1126 ['OS=="win" and win_use_allocator_shim==1', { | 1126 ['OS=="win" and win_use_allocator_shim==1', { |
1127 'dependencies': [ | 1127 'dependencies': [ |
1128 '../base/allocator/allocator.gyp:allocator', | 1128 '../base/allocator/allocator.gyp:allocator', |
1129 ], | 1129 ], |
1130 }], | 1130 }], |
1131 ], | 1131 ], |
1132 }, | 1132 }, |
1133 ], | 1133 ], |
1134 }], | 1134 }], |
| 1135 ['test_isolation_mode != "noop"', { |
| 1136 'targets': [ |
| 1137 { |
| 1138 'target_name': 'components_unittests_run', |
| 1139 'type': 'none', |
| 1140 'dependencies': [ |
| 1141 'components_unittests', |
| 1142 ], |
| 1143 'includes': [ |
| 1144 '../build/isolate.gypi', |
| 1145 ], |
| 1146 'sources': [ |
| 1147 'components_unittests.isolate', |
| 1148 ], |
| 1149 }, |
| 1150 ], |
| 1151 }], |
1135 ], | 1152 ], |
1136 } | 1153 } |
OLD | NEW |