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

Side by Side Diff: content/content_tests.gypi

Issue 12089102: Make most code on mac compile with enable_web_intents=0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ffff Created 7 years, 10 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 | « content/content_renderer.gypi ('k') | content/renderer/render_view_browsertest.cc » ('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': 'test_support_content', 8 'target_name': 'test_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 'renderer/media/webrtc_audio_device_unittest.cc', 555 'renderer/media/webrtc_audio_device_unittest.cc',
556 ], 556 ],
557 'dependencies': [ 557 'dependencies': [
558 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', 558 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection',
559 '../third_party/webrtc/modules/modules.gyp:video_capture_module', 559 '../third_party/webrtc/modules/modules.gyp:video_capture_module',
560 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy stem_wrappers', 560 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy stem_wrappers',
561 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_co re', 561 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_co re',
562 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_co re', 562 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_co re',
563 ] 563 ]
564 }], 564 }],
565 ['enable_web_intents==0', {
566 'sources!': [
567 'browser/intents/intent_injector_unittest.cc',
568 'browser/intents/internal_web_intents_dispatcher_unittest.cc',
569 ],
570 }],
565 # TODO(jrg): remove the OS=="android" section? 571 # TODO(jrg): remove the OS=="android" section?
566 # http://crbug.com/113172 572 # http://crbug.com/113172
567 # Understand better how media_stream_ is tied into Chromium. 573 # Understand better how media_stream_ is tied into Chromium.
568 ['enable_webrtc==0 and OS=="android"', { 574 ['enable_webrtc==0 and OS=="android"', {
569 'sources/': [ 575 'sources/': [
570 ['exclude', '^renderer/media/media_stream_'], 576 ['exclude', '^renderer/media/media_stream_'],
571 ], 577 ],
572 }], 578 }],
573 ['input_speech==0', { 579 ['input_speech==0', {
574 'sources/': [ 580 'sources/': [
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 # Runtime dependencies 857 # Runtime dependencies
852 '../webkit/webkit.gyp:copy_npapi_test_plugin', 858 '../webkit/webkit.gyp:copy_npapi_test_plugin',
853 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn', 859 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn',
854 ], 860 ],
855 }], 861 }],
856 ['enable_webrtc==1', { 862 ['enable_webrtc==1', {
857 'sources': [ 863 'sources': [
858 'browser/media/webrtc_browsertest.cc', 864 'browser/media/webrtc_browsertest.cc',
859 ], 865 ],
860 }], 866 }],
867 ['enable_web_intents==0', {
868 'sources!': [
869 'renderer/web_intents_host_browsertest.cc',
870 ],
871 }],
861 ['enable_plugins==0', { 872 ['enable_plugins==0', {
862 'sources!': [ 873 'sources!': [
863 'browser/plugin_service_impl_browsertest.cc', 874 'browser/plugin_service_impl_browsertest.cc',
864 'browser/plugin_data_remover_impl_browsertest.cc', 875 'browser/plugin_data_remover_impl_browsertest.cc',
865 'renderer/pepper/pepper_device_enumeration_host_helper_unittest. cc', 876 'renderer/pepper/pepper_device_enumeration_host_helper_unittest. cc',
866 'renderer/pepper/pepper_file_chooser_host_unittest.cc', 877 'renderer/pepper/pepper_file_chooser_host_unittest.cc',
867 ], 878 ],
868 }], 879 }],
869 ['input_speech==0', { 880 ['input_speech==0', {
870 'sources/': [ 881 'sources/': [
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1025 'additional_src_dirs': ['../content/public/android/javatests/',], 1036 'additional_src_dirs': ['../content/public/android/javatests/',],
1026 'resource_dir': '../shell_apk/res', 1037 'resource_dir': '../shell_apk/res',
1027 'is_test_apk': 1, 1038 'is_test_apk': 1,
1028 }, 1039 },
1029 'includes': [ '../build/java_apk.gypi' ], 1040 'includes': [ '../build/java_apk.gypi' ],
1030 }, 1041 },
1031 ], 1042 ],
1032 }], 1043 }],
1033 ], 1044 ],
1034 } 1045 }
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698