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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 11411324: Exclude chrome/common/extensions/api/ from build if enable_extensions==0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exclude test Created 8 years 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 'targets': [ 5 'targets': [
6 { 6 {
7 # This target contains mocks and test utilities that don't belong in 7 # This target contains mocks and test utilities that don't belong in
8 # production libraries but are used by more than one test executable. 8 # production libraries but are used by more than one test executable.
9 'target_name': 'test_support_common', 9 'target_name': 'test_support_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after
1722 ['target_arch!="arm" and OS!="ios"', { 1722 ['target_arch!="arm" and OS!="ios"', {
1723 'dependencies': [ 1723 'dependencies': [
1724 # build time dependency. 1724 # build time dependency.
1725 '../v8/tools/gyp/v8.gyp:v8_shell#host', 1725 '../v8/tools/gyp/v8.gyp:v8_shell#host',
1726 ], 1726 ],
1727 }], 1727 }],
1728 ['enable_extensions==0', { 1728 ['enable_extensions==0', {
1729 'sources/': [ 1729 'sources/': [
1730 ['exclude', '^browser/extensions/api/'], 1730 ['exclude', '^browser/extensions/api/'],
1731 ['exclude', '^browser/sync/glue/chrome_extensions_activity_monitor_u nittest.cc'], 1731 ['exclude', '^browser/sync/glue/chrome_extensions_activity_monitor_u nittest.cc'],
1732 ['exclude', '^common/extensions/api/'],
1732 ], 1733 ],
1733 }], 1734 }],
1734 ['use_ash==1', { 1735 ['use_ash==1', {
1735 'sources': [ 1736 'sources': [
1736 'browser/ui/app_list/apps_model_builder_unittest.cc', 1737 'browser/ui/app_list/apps_model_builder_unittest.cc',
1737 ], 1738 ],
1738 'dependencies': [ 1739 'dependencies': [
1739 '../ash/ash.gyp:ash_resources', 1740 '../ash/ash.gyp:ash_resources',
1740 '../ash/ash.gyp:test_support_ash', 1741 '../ash/ash.gyp:test_support_ash',
1741 ], 1742 ],
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
2301 'unit_tests.isolate', 2302 'unit_tests.isolate',
2302 ], 2303 ],
2303 'sources': [ 2304 'sources': [
2304 'unit_tests.isolate', 2305 'unit_tests.isolate',
2305 ], 2306 ],
2306 }, 2307 },
2307 ], 2308 ],
2308 }], 2309 }],
2309 ], # 'conditions' 2310 ], # 'conditions'
2310 } 2311 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698