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

Side by Side Diff: components/components_tests.gyp

Issue 862953002: Revert of Swarm components_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 'sources/': [ 854 'sources/': [
855 ['exclude', '^storage_monitor/'], 855 ['exclude', '^storage_monitor/'],
856 ], 856 ],
857 }], 857 }],
858 ['OS=="win" and win_use_allocator_shim==1', { 858 ['OS=="win" and win_use_allocator_shim==1', {
859 'dependencies': [ 859 'dependencies': [
860 '../base/allocator/allocator.gyp:allocator', 860 '../base/allocator/allocator.gyp:allocator',
861 ], 861 ],
862 }], 862 }],
863 ['OS=="linux" and component=="shared_library" and use_allocator!="no ne"', { 863 ['OS=="linux" and component=="shared_library" and use_allocator!="no ne"', {
864 'dependencies': [ 864 'dependencies': [
865 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 865 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
866 ], 866 ],
867 'link_settings': { 867 'link_settings': {
868 'ldflags': ['-rdynamic'], 868 'ldflags': ['-rdynamic'],
869 }, 869 },
870 }], 870 }],
871 ['configuration_policy==1', { 871 ['configuration_policy==1', {
872 'dependencies': [ 872 'dependencies': [
873 'components.gyp:policy_component', 873 'components.gyp:policy_component',
874 'components.gyp:policy_component_test_support', 874 'components.gyp:policy_component_test_support',
875 'components.gyp:policy_test_support', 875 'components.gyp:policy_test_support',
876 ], 876 ],
877 'sources': [ 877 'sources': [
878 'policy/core/browser/autofill_policy_handler_unittest.cc', 878 'policy/core/browser/autofill_policy_handler_unittest.cc',
879 'policy/core/browser/browser_policy_connector_unittest.cc', 879 'policy/core/browser/browser_policy_connector_unittest.cc',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 }], 1120 }],
1121 ['OS=="win" and win_use_allocator_shim==1', { 1121 ['OS=="win" and win_use_allocator_shim==1', {
1122 'dependencies': [ 1122 'dependencies': [
1123 '../base/allocator/allocator.gyp:allocator', 1123 '../base/allocator/allocator.gyp:allocator',
1124 ], 1124 ],
1125 }], 1125 }],
1126 ], 1126 ],
1127 }, 1127 },
1128 ], 1128 ],
1129 }], 1129 }],
1130 ['test_isolation_mode != "noop"', {
1131 'targets': [
1132 {
1133 'target_name': 'components_unittests_run',
1134 'type': 'none',
1135 'dependencies': [
1136 'components_unittests',
1137 ],
1138 'includes': [
1139 '../build/isolate.gypi',
1140 ],
1141 'sources': [
1142 'components_unittests.isolate',
1143 ],
1144 },
1145 ],
1146 }],
1147 ], 1130 ],
1148 } 1131 }
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