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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 8872044: Add test cases for panel overflow handling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final patch to land Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/panels/panel_strip.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 'browser/infobars/infobars_uitest.cc', 543 'browser/infobars/infobars_uitest.cc',
544 'browser/instant/instant_browsertest.cc', 544 'browser/instant/instant_browsertest.cc',
545 'browser/keyboard_access_uitest.cc', 545 'browser/keyboard_access_uitest.cc',
546 'browser/mouseleave_interactive_uitest.cc', 546 'browser/mouseleave_interactive_uitest.cc',
547 'browser/notifications/notifications_interactive_uitest.cc', 547 'browser/notifications/notifications_interactive_uitest.cc',
548 'browser/npapi_interactive_test.cc', 548 'browser/npapi_interactive_test.cc',
549 'browser/task_manager/task_manager_browsertest_util.cc', 549 'browser/task_manager/task_manager_browsertest_util.cc',
550 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_interactive_uitest.cc', 550 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_interactive_uitest.cc',
551 'browser/ui/omnibox/omnibox_view_browsertest.cc', 551 'browser/ui/omnibox/omnibox_view_browsertest.cc',
552 'browser/ui/panels/panel_browsertest.cc', 552 'browser/ui/panels/panel_browsertest.cc',
553 'browser/ui/panels/panel_overflow_browsertest.cc',
553 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc', 554 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc',
554 'browser/ui/views/button_dropdown_test.cc', 555 'browser/ui/views/button_dropdown_test.cc',
555 'browser/ui/views/constrained_window_views_browsertest.cc', 556 'browser/ui/views/constrained_window_views_browsertest.cc',
556 'browser/ui/views/find_bar_host_interactive_uitest.cc', 557 'browser/ui/views/find_bar_host_interactive_uitest.cc',
557 'browser/ui/views/menu_item_view_test.cc', 558 'browser/ui/views/menu_item_view_test.cc',
558 'browser/ui/views/menu_model_adapter_test.cc', 559 'browser/ui/views/menu_model_adapter_test.cc',
559 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', 560 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc',
560 'browser/ui/views/tabs/tab_dragging_test.cc', 561 'browser/ui/views/tabs/tab_dragging_test.cc',
561 'browser/ui/webui/workers_ui_browsertest.cc', 562 'browser/ui/webui/workers_ui_browsertest.cc',
562 'test/base/chrome_test_launcher.cc', 563 'test/base/chrome_test_launcher.cc',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 ], 636 ],
636 }], 637 }],
637 ['toolkit_views==1', { 638 ['toolkit_views==1', {
638 'dependencies': [ 639 'dependencies': [
639 '../ui/views/views.gyp:views', 640 '../ui/views/views.gyp:views',
640 ], 641 ],
641 }], 642 }],
642 ['chromeos==1', { 643 ['chromeos==1', {
643 'sources!': [ 644 'sources!': [
644 'browser/ui/panels/panel_browsertest.cc', 645 'browser/ui/panels/panel_browsertest.cc',
646 'browser/ui/panels/panel_overflow_browsertest.cc',
645 ], 647 ],
646 }], 648 }],
647 ['OS=="win"', { 649 ['OS=="win"', {
648 'include_dirs': [ 650 'include_dirs': [
649 '../third_party/wtl/include', 651 '../third_party/wtl/include',
650 ], 652 ],
651 'dependencies': [ 653 'dependencies': [
652 'chrome.gyp:chrome_version_resources', 654 'chrome.gyp:chrome_version_resources',
653 'chrome.gyp:installer_util_strings', 655 'chrome.gyp:installer_util_strings',
654 '../sandbox/sandbox.gyp:sandbox', 656 '../sandbox/sandbox.gyp:sandbox',
(...skipping 3671 matching lines...) Expand 10 before | Expand all | Expand 10 after
4326 # Use outputs of this action as inputs for the main target build. 4328 # Use outputs of this action as inputs for the main target build.
4327 # Seems as a misnomer but makes this happy on Linux (scons). 4329 # Seems as a misnomer but makes this happy on Linux (scons).
4328 'process_outputs_as_sources': 1, 4330 'process_outputs_as_sources': 1,
4329 }, 4331 },
4330 ], # 'actions' 4332 ], # 'actions'
4331 }, 4333 },
4332 ] 4334 ]
4333 }], # 'coverage!=0' 4335 }], # 'coverage!=0'
4334 ], # 'conditions' 4336 ], # 'conditions'
4335 } 4337 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel_strip.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698