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

Side by Side Diff: chrome/chrome_common.gypi

Issue 12045031: Disabling automation on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed last suggestion from John Created 7 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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_renderer.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api', 375 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api',
376 '<(DEPTH)/ipc/ipc.gyp:ipc', 376 '<(DEPTH)/ipc/ipc.gyp:ipc',
377 '<(DEPTH)/printing/printing.gyp:printing', 377 '<(DEPTH)/printing/printing.gyp:printing',
378 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h ', 378 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h ',
379 '<(DEPTH)/third_party/re2/re2.gyp:re2', 379 '<(DEPTH)/third_party/re2/re2.gyp:re2',
380 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_ver sion_h', 380 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_ver sion_h',
381 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', 381 '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
382 ], 382 ],
383 }, { # OS == ios 383 }, { # OS == ios
384 'sources/': [ 384 'sources/': [
385 ['exclude', '^common/automation_'],
386 ['exclude', '^common/child_process_'], 385 ['exclude', '^common/child_process_'],
387 ['exclude', '^common/chrome_content_client\\.cc$'], 386 ['exclude', '^common/chrome_content_client\\.cc$'],
388 ['exclude', '^common/chrome_version_info_posix\\.cc$'], 387 ['exclude', '^common/chrome_version_info_posix\\.cc$'],
389 ['exclude', '^common/common_message_generator\\.cc$'], 388 ['exclude', '^common/common_message_generator\\.cc$'],
390 ['exclude', '^common/common_param_traits'], 389 ['exclude', '^common/common_param_traits'],
391 ['exclude', '^common/custom_handlers/'], 390 ['exclude', '^common/custom_handlers/'],
392 ['exclude', '^common/extensions/'], 391 ['exclude', '^common/extensions/'],
393 ['exclude', '^common/external_ipc_fuzzer\\.'], 392 ['exclude', '^common/external_ipc_fuzzer\\.'],
394 ['exclude', '^common/logging_chrome\\.'], 393 ['exclude', '^common/logging_chrome\\.'],
395 ['exclude', '^common/multi_process_'], 394 ['exclude', '^common/multi_process_'],
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 ['include', 'common/extensions/api/extension_api_stub.cc'], 473 ['include', 'common/extensions/api/extension_api_stub.cc'],
475 ['include', 'common/extensions/api/extension_action/action_info.cc'] , 474 ['include', 'common/extensions/api/extension_action/action_info.cc'] ,
476 ['include', 'common/extensions/api/extension_action/action_info.h'], 475 ['include', 'common/extensions/api/extension_action/action_info.h'],
477 ], 476 ],
478 }], 477 }],
479 ['remoting==1', { 478 ['remoting==1', {
480 'dependencies': [ 479 'dependencies': [
481 '../remoting/remoting.gyp:remoting_client_plugin', 480 '../remoting/remoting.gyp:remoting_client_plugin',
482 ], 481 ],
483 }], 482 }],
483 ['enable_automation==0', {
484 'sources/': [
485 ['exclude', '^common/automation_']
486 ]
487 }]
484 ], 488 ],
485 'target_conditions': [ 489 'target_conditions': [
486 ['OS == "ios"', { 490 ['OS == "ios"', {
487 'sources/': [ 491 'sources/': [
488 # Pull in specific Mac files for iOS (which have been filtered out 492 # Pull in specific Mac files for iOS (which have been filtered out
489 # by file name rules). 493 # by file name rules).
490 ['include', '^common/chrome_version_info_mac\\.mm$'], 494 ['include', '^common/chrome_version_info_mac\\.mm$'],
491 ['include', '^common/mac/nscoder_util\\.'], 495 ['include', '^common/mac/nscoder_util\\.'],
492 ], 496 ],
493 }], 497 }],
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 'common/metrics/proto/user_action_event.proto', 663 'common/metrics/proto/user_action_event.proto',
660 ], 664 ],
661 'variables': { 665 'variables': {
662 'proto_in_dir': 'common/metrics/proto', 666 'proto_in_dir': 'common/metrics/proto',
663 'proto_out_dir': 'chrome/common/metrics/proto', 667 'proto_out_dir': 'chrome/common/metrics/proto',
664 }, 668 },
665 'includes': [ '../build/protoc.gypi' ], 669 'includes': [ '../build/protoc.gypi' ],
666 }, 670 },
667 ], 671 ],
668 } 672 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698