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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 372843006: Android: Exclude google drive code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix GN Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | google_apis/BUILD.gn » ('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 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 'dependencies': [ 368 'dependencies': [
369 'service', 369 'service',
370 ], 370 ],
371 }], 371 }],
372 ['enable_printing==0', { 372 ['enable_printing==0', {
373 'sources/': [ 373 'sources/': [
374 ['exclude', '^renderer/printing/mock_printer.cc'], 374 ['exclude', '^renderer/printing/mock_printer.cc'],
375 ['exclude', '^renderer/printing/mock_printer.h'], 375 ['exclude', '^renderer/printing/mock_printer.h'],
376 ], 376 ],
377 }], 377 }],
378 ['enable_extensions==0', {
379 'sources/': [
380 ['exclude', '^browser/drive/'],
381 ['exclude', '^browser/extensions/api/messaging/native_messaging_'],
382 ['exclude', '^browser/media_galleries/'],
383 ],
384 }],
378 ['OS=="android"', { 385 ['OS=="android"', {
379 'dependencies!': [ 386 'dependencies!': [
380 '../components/components.gyp:storage_monitor_test_support', 387 '../components/components.gyp:storage_monitor_test_support',
381 ], 388 ],
382 'sources/': [
383 ['exclude', '^browser/media_galleries/'],
384 ['exclude', '^browser/extensions/api/messaging/native_messaging_'],
385 ],
386 }], 389 }],
387 ['OS=="win"', { 390 ['OS=="win"', {
388 'dependencies': [ 391 'dependencies': [
389 '../ui/snapshot/snapshot.gyp:snapshot_test_support', 392 '../ui/snapshot/snapshot.gyp:snapshot_test_support',
390 ], 393 ],
391 'include_dirs': [ 394 'include_dirs': [
392 '<(DEPTH)/third_party/wtl/include', 395 '<(DEPTH)/third_party/wtl/include',
393 ], 396 ],
394 'conditions': [ 397 'conditions': [
395 ['use_aura==1', { 398 ['use_aura==1', {
(...skipping 1708 matching lines...) Expand 10 before | Expand all | Expand 10 after
2104 # TODO(yael): Move to //components/components_tests.gypi once 2107 # TODO(yael): Move to //components/components_tests.gypi once
2105 # nacl_defines is moved out of chrome.gyp into a common place. 2108 # nacl_defines is moved out of chrome.gyp into a common place.
2106 '../components/nacl/loader/nacl_ipc_adapter_unittest.cc', 2109 '../components/nacl/loader/nacl_ipc_adapter_unittest.cc',
2107 '../components/nacl/loader/nacl_validation_query_unittest.cc', 2110 '../components/nacl/loader/nacl_validation_query_unittest.cc',
2108 ], 2111 ],
2109 }], 2112 }],
2110 ['enable_extensions==0', { 2113 ['enable_extensions==0', {
2111 'sources/': [ 2114 'sources/': [
2112 ['exclude', '^../apps/'], 2115 ['exclude', '^../apps/'],
2113 ['exclude', '^../extensions/'], 2116 ['exclude', '^../extensions/'],
2117 ['exclude', '^browser/drive/'],
2114 ['exclude', '^browser/extensions/activity_log/'], 2118 ['exclude', '^browser/extensions/activity_log/'],
2115 ['exclude', '^browser/extensions/api/'], 2119 ['exclude', '^browser/extensions/api/'],
2116 ['exclude', '^browser/extensions/error_console/'], 2120 ['exclude', '^browser/extensions/error_console/'],
2117 ['exclude', '^browser/sync/glue/extensions_activity_monitor_unittest .cc'], 2121 ['exclude', '^browser/sync/glue/extensions_activity_monitor_unittest .cc'],
2118 ['exclude', '^browser/sync_file_system/'], 2122 ['exclude', '^browser/sync_file_system/'],
2119 ['exclude', '^common/extensions/api/'], 2123 ['exclude', '^common/extensions/api/'],
2120 ['exclude', '^common/extensions/manifest_handlers/'], 2124 ['exclude', '^common/extensions/manifest_handlers/'],
2121 ['exclude', '^common/extensions/manifest_tests/'], 2125 ['exclude', '^common/extensions/manifest_tests/'],
2122 # This test depends on manifest_tests. 2126 # This test depends on manifest_tests.
2123 ['exclude', '^common/extensions/permissions/settings_override_permis sion_unittest.cc'], 2127 ['exclude', '^common/extensions/permissions/settings_override_permis sion_unittest.cc'],
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
2906 'unit_tests.isolate', 2910 'unit_tests.isolate',
2907 ], 2911 ],
2908 'sources': [ 2912 'sources': [
2909 'unit_tests.isolate', 2913 'unit_tests.isolate',
2910 ], 2914 ],
2911 }, 2915 },
2912 ], 2916 ],
2913 }], 2917 }],
2914 ], # 'conditions' 2918 ], # 'conditions'
2915 } 2919 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | google_apis/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698