diff options
author | dimich@chromium.org <dimich@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-14 05:30:24 +0000 |
---|---|---|
committer | dimich@chromium.org <dimich@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-14 05:30:24 +0000 |
commit | fb1aac14e2833d6ba5b9d9ba61a964a6eb26f180 (patch) | |
tree | 3ec59087d20b1bded6b25484dbc7558a6957b76f /chrome/chrome_tests.gypi | |
parent | 25c2f0dd9ae9c7f8db2527dd72e3cbb45666c57e (diff) | |
download | chromium_src-fb1aac14e2833d6ba5b9d9ba61a964a6eb26f180.zip chromium_src-fb1aac14e2833d6ba5b9d9ba61a964a6eb26f180.tar.gz chromium_src-fb1aac14e2833d6ba5b9d9ba61a964a6eb26f180.tar.bz2 |
Remove ENABLE_MESSAGE_CENTER
Next step on re-factoring Notifications. This will bring the MessageCenter classes, most important message_center::Notification, into build on all systems, including those where the MessageCenter is not yet appearign in UI. This will allow to start using this Notification class in client code and remove the old Notification class defined in chrome/browser/notificaitons/notification.h
That will allow the clients that already use Rich Notifications to use richer data type support, for example supply an image bits for a Notification (as in Snapshot notifications).
This also removes a lot of compile-time @ifdefs and replaces them with checking a runtime flag which we already have anyways.
On Android and iOS, the MessageCenter is not compiled in, for the size concerns and uncertain story for notifications in general - the existing ENABLE_NOTIFICATIONS define is used for that.
BUG=174164
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=199625
Review URL: https://chromiumcodereview.appspot.com/15025002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_tests.gypi')
-rw-r--r-- | chrome/chrome_tests.gypi | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi index 11c3267..23a96cd 100644 --- a/chrome/chrome_tests.gypi +++ b/chrome/chrome_tests.gypi @@ -478,11 +478,6 @@ 'browser/ui/views/native_widget_win_interactive_uitest.cc', ], }], # OS != "win" - ['enable_message_center==0', { - 'sources!': [ - 'browser/ui/views/message_center/web_notification_tray_win_browsertest.cc', - ], - }], # enable_message_center ], # conditions }, { @@ -2036,11 +2031,6 @@ ['exclude', '^browser/ui/app_list/'], ], }], - ['enable_message_center==0', { - 'sources!': [ - 'browser/notifications/message_center_notifications_browsertest.cc', - ], - }], ['enable_plugins==1', { 'dependencies': [ # Runtime dependency. |