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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 784383002: Support persistent notifications in the PlatformNotificationServiceImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@n-chrome-base
Patch Set: adds browser tests Created 6 years 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 5 'variables': {
6 'chrome_browser_extensions_test_support_sources': [ 6 'chrome_browser_extensions_test_support_sources': [
7 # A list of sources which is shared between different browser tests. 7 # A list of sources which is shared between different browser tests.
8 'browser/apps/app_browsertest_util.cc', 8 'browser/apps/app_browsertest_util.cc',
9 'browser/apps/app_browsertest_util.h', 9 'browser/apps/app_browsertest_util.h',
10 'browser/extensions/browsertest_util.cc', 10 'browser/extensions/browsertest_util.cc',
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1471 # Common notifications tests. 1471 # Common notifications tests.
1472 'sources': [ 1472 'sources': [
1473 'browser/extensions/notifications_apitest.cc', 1473 'browser/extensions/notifications_apitest.cc',
1474 ], 1474 ],
1475 'conditions': [ 1475 'conditions': [
1476 ['chromeos == 0', { 1476 ['chromeos == 0', {
1477 # Non-ChromeOS notifications tests (ChromeOS does not use 1477 # Non-ChromeOS notifications tests (ChromeOS does not use
1478 # cross-platform panels). 1478 # cross-platform panels).
1479 'sources': [ 1479 'sources': [
1480 'browser/notifications/notification_browsertest.cc', 1480 'browser/notifications/notification_browsertest.cc',
1481 'browser/notifications/platform_notification_service_browsertest .cc',
1481 ], 1482 ],
1482 }], 1483 }],
1483 ], 1484 ],
1484 }], 1485 }],
1485 ['OS=="android"', { 1486 ['OS=="android"', {
1486 'sources!': [ 1487 'sources!': [
1487 # Android does not use the message center-based Notification system. 1488 # Android does not use the message center-based Notification system.
1488 'browser/notifications/message_center_notifications_browsertest.cc', 1489 'browser/notifications/message_center_notifications_browsertest.cc',
1489 1490
1490 # TODO(peter): Enable the Notification browser tests. 1491 # TODO(peter): Enable the Notification browser tests.
1491 'browser/notifications/notification_browsertest.cc', 1492 'browser/notifications/notification_browsertest.cc',
1493 'browser/notifications/platform_notification_service_browsertest.cc' ,
1492 ] 1494 ]
1493 }], 1495 }],
1494 ['toolkit_views==1', { 1496 ['toolkit_views==1', {
1495 'sources': [ '<@(chrome_interactive_ui_test_views_sources)' ], 1497 'sources': [ '<@(chrome_interactive_ui_test_views_sources)' ],
1496 'dependencies': [ 1498 'dependencies': [
1497 '../ui/views/controls/webview/webview_tests.gyp:webview_test_support ', 1499 '../ui/views/controls/webview/webview_tests.gyp:webview_test_support ',
1498 '../ui/views/views.gyp:views', 1500 '../ui/views/views.gyp:views',
1499 '../ui/views/views.gyp:views_test_support', 1501 '../ui/views/views.gyp:views_test_support',
1500 ], 1502 ],
1501 }], 1503 }],
(...skipping 1715 matching lines...) Expand 10 before | Expand all | Expand 10 after
3217 ['enable_webrtc==1', { 3219 ['enable_webrtc==1', {
3218 'dependencies': [ 3220 'dependencies': [
3219 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' 3221 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc'
3220 ] 3222 ]
3221 }], 3223 }],
3222 ], 3224 ],
3223 }] 3225 }]
3224 }], 3226 }],
3225 ], # 'conditions' 3227 ], # 'conditions'
3226 } 3228 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698