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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 12225076: Delete most web intents code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | « chrome/browser/webdata/web_intents_table.cc ('k') | chrome/chrome_browser_extensions.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 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 'browser/instant/instant_preview_controller.cc', 947 'browser/instant/instant_preview_controller.cc',
948 'browser/instant/instant_preview_controller.h', 948 'browser/instant/instant_preview_controller.h',
949 'browser/instant/instant_service.cc', 949 'browser/instant/instant_service.cc',
950 'browser/instant/instant_service.h', 950 'browser/instant/instant_service.h',
951 'browser/instant/instant_service_factory.cc', 951 'browser/instant/instant_service_factory.cc',
952 'browser/instant/instant_service_factory.h', 952 'browser/instant/instant_service_factory.h',
953 'browser/instant/instant_tab.cc', 953 'browser/instant/instant_tab.cc',
954 'browser/instant/instant_tab.h', 954 'browser/instant/instant_tab.h',
955 'browser/instant/instant_unload_handler.cc', 955 'browser/instant/instant_unload_handler.cc',
956 'browser/instant/instant_unload_handler.h', 956 'browser/instant/instant_unload_handler.h',
957 'browser/intents/cws_intents_registry.cc',
958 'browser/intents/cws_intents_registry.h',
959 'browser/intents/cws_intents_registry_factory.cc',
960 'browser/intents/cws_intents_registry_factory.h',
961 'browser/intents/default_web_intent_service.cc',
962 'browser/intents/default_web_intent_service.h',
963 'browser/intents/intent_service_host.h',
964 'browser/intents/native_services.cc',
965 'browser/intents/native_services.h',
966 'browser/intents/register_intent_handler_infobar_delegate.cc',
967 'browser/intents/register_intent_handler_infobar_delegate.h',
968 'browser/intents/web_intents_registry.cc',
969 'browser/intents/web_intents_registry.h',
970 'browser/intents/web_intents_registry_factory.cc',
971 'browser/intents/web_intents_registry_factory.h',
972 'browser/intents/web_intents_reporting.cc',
973 'browser/intents/web_intents_reporting.h',
974 'browser/intents/web_intents_util.cc',
975 'browser/intents/web_intents_util.h',
976 'browser/intents/web_intents_util_stub.cc',
977 'browser/internal_auth.cc', 957 'browser/internal_auth.cc',
978 'browser/internal_auth.h', 958 'browser/internal_auth.h',
979 'browser/intranet_redirect_detector.cc', 959 'browser/intranet_redirect_detector.cc',
980 'browser/intranet_redirect_detector.h', 960 'browser/intranet_redirect_detector.h',
981 'browser/io_thread.cc', 961 'browser/io_thread.cc',
982 'browser/io_thread.h', 962 'browser/io_thread.h',
983 'browser/jankometer.cc', 963 'browser/jankometer.cc',
984 'browser/jankometer.h', 964 'browser/jankometer.h',
985 'browser/jankometer_android.cc', 965 'browser/jankometer_android.cc',
986 'browser/jankometer_mac.cc', 966 'browser/jankometer_mac.cc',
(...skipping 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after
2698 'sources/': [ 2678 'sources/': [
2699 ['exclude', '^browser/speech/chrome_speech'], 2679 ['exclude', '^browser/speech/chrome_speech'],
2700 ['exclude', '^browser/speech/speech_'], 2680 ['exclude', '^browser/speech/speech_'],
2701 ], 2681 ],
2702 }], 2682 }],
2703 ['notifications==0', { 2683 ['notifications==0', {
2704 'sources/': [ 2684 'sources/': [
2705 ['exclude', '^browser/notifications/'], 2685 ['exclude', '^browser/notifications/'],
2706 ], 2686 ],
2707 }], 2687 }],
2708 ['enable_web_intents==0', {
2709 'sources/': [
2710 ['exclude', '^browser/intents/'],
2711 ['include', '^browser/intents/web_intents_util_stub.cc'],
2712 ],
2713 }, { # enable_web_intents==1
2714 'sources!': [
2715 'browser/intents/web_intents_util_stub.cc',
2716 ],
2717 }],
2718 ['enable_themes==0', { 2688 ['enable_themes==0', {
2719 'sources!': [ 2689 'sources!': [
2720 'browser/sync/glue/theme_data_type_controller.cc', 2690 'browser/sync/glue/theme_data_type_controller.cc',
2721 ], 2691 ],
2722 'sources/': [ 2692 'sources/': [
2723 ['exclude', '^browser/themes/'], 2693 ['exclude', '^browser/themes/'],
2724 ], 2694 ],
2725 }], 2695 }],
2726 ['enable_automation!=1', { 2696 ['enable_automation!=1', {
2727 'sources/': [ 2697 'sources/': [
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
3147 'variables': { 3117 'variables': {
3148 'jni_gen_dir': 'chrome', 3118 'jni_gen_dir': 'chrome',
3149 }, 3119 },
3150 'includes': [ '../build/jni_generator.gypi' ], 3120 'includes': [ '../build/jni_generator.gypi' ],
3151 }, 3121 },
3152 ], 3122 ],
3153 }, 3123 },
3154 ], 3124 ],
3155 ], 3125 ],
3156 } 3126 }
OLDNEW
« no previous file with comments | « chrome/browser/webdata/web_intents_table.cc ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698