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

Side by Side Diff: components/components_tests.gyp

Issue 852893002: Swarm components_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reland Created 5 years, 11 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 | components/components_unittests.isolate » ('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 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | components/components_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698