Make most code on mac compile with enable_web_intents=0
Once everything builds with that set, I'll switch the default
of that to off, then merge that into webkit and delete the
webkit pieces, and then I'll delete the chromium bits.
Since enable_web_intents is still 1, this change has no observable effect.
BUG=173194
TEST=build with GYP_DEFINES=enable_web_intents=0. No compile errors,
fewer linker errors.
TBR=jschuh
Review URL: https://codereview.chromium.org/12089102
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180186 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/chrome_common.gypi b/chrome/chrome_common.gypi
index eccc67ec..f6d4af4 100644
--- a/chrome/chrome_common.gypi
+++ b/chrome/chrome_common.gypi
@@ -503,6 +503,12 @@
['exclude', '^common/automation_']
]
}],
+ ['enable_web_intents==0', {
+ 'sources!': [
+ 'common/extensions/web_intents_handler.cc',
+ 'common/extensions/web_intents_handler.h',
+ ],
+ }],
['use_system_nspr==1', {
'dependencies': [
'<(DEPTH)/base/third_party/nspr/nspr.gyp:nspr',