OLD | NEW |
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 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1436 ], | 1436 ], |
1437 # See comment about the same line in chrome/chrome_tests.gypi. | 1437 # See comment about the same line in chrome/chrome_tests.gypi. |
1438 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 1438 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
1439 }], # OS=="mac" | 1439 }], # OS=="mac" |
1440 ['notifications==0', { | 1440 ['notifications==0', { |
1441 'sources/': [ | 1441 'sources/': [ |
1442 ['exclude', '^browser/notifications/'], | 1442 ['exclude', '^browser/notifications/'], |
1443 ['exclude', '^browser/extensions/notifications_apitest.cc'], | 1443 ['exclude', '^browser/extensions/notifications_apitest.cc'], |
1444 ], | 1444 ], |
1445 }], | 1445 }], |
| 1446 ['OS=="android"', { |
| 1447 'sources!': [ |
| 1448 # Android does not use the message center-based Notification system. |
| 1449 'browser/notifications/message_center_notifications_browsertest.cc', |
| 1450 |
| 1451 # TODO(peter): Enable the Notification browser tests. |
| 1452 'browser/notifications/notification_browsertest.cc', |
| 1453 ] |
| 1454 }], |
1446 ['toolkit_views==1', { | 1455 ['toolkit_views==1', { |
1447 'dependencies': [ | 1456 'dependencies': [ |
1448 '../ui/views/controls/webview/webview_tests.gyp:webview_test_support
', | 1457 '../ui/views/controls/webview/webview_tests.gyp:webview_test_support
', |
1449 '../ui/views/views.gyp:views', | 1458 '../ui/views/views.gyp:views', |
1450 '../ui/views/views.gyp:views_test_support', | 1459 '../ui/views/views.gyp:views_test_support', |
1451 ], | 1460 ], |
1452 }, { # else: toolkit_views == 0 | 1461 }, { # else: toolkit_views == 0 |
1453 'sources!': [ | 1462 'sources!': [ |
1454 'test/base/view_event_test_base.cc', | 1463 'test/base/view_event_test_base.cc', |
1455 'test/base/view_event_test_base.h', | 1464 'test/base/view_event_test_base.h', |
(...skipping 1733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3189 ['enable_webrtc==1', { | 3198 ['enable_webrtc==1', { |
3190 'dependencies': [ | 3199 'dependencies': [ |
3191 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' | 3200 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' |
3192 ] | 3201 ] |
3193 }], | 3202 }], |
3194 ], | 3203 ], |
3195 }] | 3204 }] |
3196 }], | 3205 }], |
3197 ], # 'conditions' | 3206 ], # 'conditions' |
3198 } | 3207 } |
OLD | NEW |