diff options
author | dfalcantara@chromium.org <dfalcantara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-01 00:29:11 +0000 |
---|---|---|
committer | dfalcantara@chromium.org <dfalcantara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-01 00:29:11 +0000 |
commit | 5fd2e8462f3887bc174a0e00b6ca51e659c4e01e (patch) | |
tree | 85078d51f3f3f2ad7da797e9c1e205965c766774 /build/common.gypi | |
parent | 685bd5e2a26281143bbdca7717c135b9a9f752d0 (diff) | |
download | chromium_src-5fd2e8462f3887bc174a0e00b6ca51e659c4e01e.zip chromium_src-5fd2e8462f3887bc174a0e00b6ca51e659c4e01e.tar.gz chromium_src-5fd2e8462f3887bc174a0e00b6ca51e659c4e01e.tar.bz2 |
Android: Guard off desktop notifications
We currently have no system in place to perform desktop
notifications on Android. This CL guards off certain bits
of code and prevents the files in browser/notifications/*
from being compiled when notifications are disabled.
BUG=http://crbug.com/115320
TEST=
Review URL: http://codereview.chromium.org/9447034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124305 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index f5bc3a5..487ff93 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -747,6 +747,9 @@ 'configuration_policy%': 0, 'input_speech%': 0, 'java_bridge%': 1, + + # Set to 1 once we have a notification system for Android. + # http://crbug.com/115320 'notifications%': 0, # Builds the gtest targets as a shared_library. |