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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 1747803003: MacViews: Implement Tab Dragging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed debug logging, use CGEvents for drag-n-drop. Created 4 years, 9 months 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 1707 matching lines...) Expand 10 before | Expand all | Expand 10 after
1718 # See comment about the same line in chrome/chrome_tests.gypi. 1718 # See comment about the same line in chrome/chrome_tests.gypi.
1719 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 1719 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
1720 'conditions' : [ 1720 'conditions' : [
1721 # The browser window can be views or Cocoa on Mac. Test accordingly. 1721 # The browser window can be views or Cocoa on Mac. Test accordingly.
1722 ['mac_views_browser==1', { 1722 ['mac_views_browser==1', {
1723 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources) ' ], 1723 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources) ' ],
1724 # Following tests needs a refactoring to works with mac_views. 1724 # Following tests needs a refactoring to works with mac_views.
1725 'sources!': [ 1725 'sources!': [
1726 # Aura depended tests. 1726 # Aura depended tests.
1727 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc', 1727 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc',
1728 'browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc ', 1728 #'browser/ui/views/tabs/tab_drag_controller_interactive_uitest.c c',
1729 ] 1729 ]
1730 }, { 1730 }, {
1731 'sources': [ '<@(chrome_interactive_ui_test_cocoa_sources)' ], 1731 'sources': [ '<@(chrome_interactive_ui_test_cocoa_sources)' ],
1732 }], # mac_views_browser==1 1732 }], # mac_views_browser==1
1733 ], 1733 ],
1734 }, { # Non-Mac. 1734 }, { # Non-Mac.
1735 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources)' ], 1735 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources)' ],
1736 }], 1736 }],
1737 ['notifications == 1', { 1737 ['notifications == 1', {
1738 # Common notifications tests. 1738 # Common notifications tests.
(...skipping 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after
3521 'browser', 3521 'browser',
3522 ], 3522 ],
3523 'sources': [ 3523 'sources': [
3524 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3524 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3525 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3525 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3526 ], 3526 ],
3527 }] 3527 }]
3528 }], 3528 }],
3529 ], # 'conditions' 3529 ], # 'conditions'
3530 } 3530 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698