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

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: Remove crbug.com/518740-fixing code, remove DragAndDrop helpers that are no longer required without… Created 4 years, 6 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 'build_angle_deqp_tests%': 0, 6 'build_angle_deqp_tests%': 0,
7 'chrome_browser_extensions_test_support_sources': [ 7 'chrome_browser_extensions_test_support_sources': [
8 # A list of sources which is shared between different browser tests. 8 # A list of sources which is shared between different browser tests.
9 'browser/apps/app_browsertest_util.cc', 9 'browser/apps/app_browsertest_util.cc',
10 'browser/apps/app_browsertest_util.h', 10 'browser/apps/app_browsertest_util.h',
(...skipping 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 # See comment about the same line in chrome/chrome_tests.gypi. 1739 # See comment about the same line in chrome/chrome_tests.gypi.
1740 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 1740 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
1741 'conditions' : [ 1741 'conditions' : [
1742 # The browser window can be views or Cocoa on Mac. Test accordingly. 1742 # The browser window can be views or Cocoa on Mac. Test accordingly.
1743 ['mac_views_browser==1', { 1743 ['mac_views_browser==1', {
1744 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources) ' ], 1744 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources) ' ],
1745 # Following tests needs a refactoring to works with mac_views. 1745 # Following tests needs a refactoring to works with mac_views.
1746 'sources!': [ 1746 'sources!': [
1747 # Aura depended tests. 1747 # Aura depended tests.
1748 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc', 1748 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc',
1749 'browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc ',
1750 ] 1749 ]
1751 }, { 1750 }, {
1752 'sources': [ '<@(chrome_interactive_ui_test_cocoa_sources)' ], 1751 'sources': [ '<@(chrome_interactive_ui_test_cocoa_sources)' ],
1753 }], # mac_views_browser==1 1752 }], # mac_views_browser==1
1754 ], 1753 ],
1755 }, { # Non-Mac. 1754 }, { # Non-Mac.
1756 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources)' ], 1755 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources)' ],
1757 }], 1756 }],
1758 ['notifications == 1', { 1757 ['notifications == 1', {
1759 # Common notifications tests. 1758 # Common notifications tests.
(...skipping 1844 matching lines...) Expand 10 before | Expand all | Expand 10 after
3604 'browser', 3603 'browser',
3605 ], 3604 ],
3606 'sources': [ 3605 'sources': [
3607 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3606 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3608 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3607 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3609 ], 3608 ],
3610 }] 3609 }]
3611 }], 3610 }],
3612 ], # 'conditions' 3611 ], # 'conditions'
3613 } 3612 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698