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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 8052019: Create constrained windows in a hidden state. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and address comments Created 9 years, 1 month 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/views/constrained_window_views_browsertest.cc ('k') | views/view.cc » ('j') | 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 { 5 {
6 'variables' : { 6 'variables' : {
7 'pyautolib_sources': [ 7 'pyautolib_sources': [
8 'app/chrome_command_ids.h', 8 'app/chrome_command_ids.h',
9 'app/chrome_dll_resource.h', 9 'app/chrome_dll_resource.h',
10 'common/automation_constants.h', 10 'common/automation_constants.h',
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 'browser/instant/instant_browsertest.cc', 520 'browser/instant/instant_browsertest.cc',
521 'browser/keyboard_access_uitest.cc', 521 'browser/keyboard_access_uitest.cc',
522 'browser/mouseleave_interactive_uitest.cc', 522 'browser/mouseleave_interactive_uitest.cc',
523 'browser/notifications/notifications_interactive_uitest.cc', 523 'browser/notifications/notifications_interactive_uitest.cc',
524 'browser/npapi_interactive_test.cc', 524 'browser/npapi_interactive_test.cc',
525 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_interactive_uitest.cc', 525 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_interactive_uitest.cc',
526 'browser/ui/omnibox/omnibox_view_browsertest.cc', 526 'browser/ui/omnibox/omnibox_view_browsertest.cc',
527 'browser/ui/panels/panel_browsertest.cc', 527 'browser/ui/panels/panel_browsertest.cc',
528 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc', 528 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc',
529 'browser/ui/views/button_dropdown_test.cc', 529 'browser/ui/views/button_dropdown_test.cc',
530 'browser/ui/views/constrained_window_views_browsertest.cc',
530 'browser/ui/views/find_bar_host_interactive_uitest.cc', 531 'browser/ui/views/find_bar_host_interactive_uitest.cc',
531 'browser/ui/views/menu_item_view_test.cc', 532 'browser/ui/views/menu_item_view_test.cc',
532 'browser/ui/views/menu_model_adapter_test.cc', 533 'browser/ui/views/menu_model_adapter_test.cc',
533 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', 534 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc',
534 'browser/ui/views/tabs/tab_dragging_test.cc', 535 'browser/ui/views/tabs/tab_dragging_test.cc',
535 'browser/ui/webui/workers_ui_browsertest.cc', 536 'browser/ui/webui/workers_ui_browsertest.cc',
536 'test/base/chrome_test_launcher.cc', 537 'test/base/chrome_test_launcher.cc',
537 'test/base/view_event_test_base.cc', 538 'test/base/view_event_test_base.cc',
538 'test/base/view_event_test_base.h', 539 'test/base/view_event_test_base.h',
539 '../content/app/startup_helper_win.cc', 540 '../content/app/startup_helper_win.cc',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 'Debug_Base': { 668 'Debug_Base': {
668 'msvs_settings': { 669 'msvs_settings': {
669 'VCLinkerTool': { 670 'VCLinkerTool': {
670 'LinkIncremental': '<(msvs_debug_link_nonincremental)', 671 'LinkIncremental': '<(msvs_debug_link_nonincremental)',
671 }, 672 },
672 }, 673 },
673 }, 674 },
674 }, # configurations 675 }, # configurations
675 }, { # else: OS != "win" 676 }, { # else: OS != "win"
676 'sources!': [ 677 'sources!': [
678 'browser/ui/views/constrained_window_views_browsertest.cc',
677 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', 679 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc',
678 ], 680 ],
679 }], # OS != "win" 681 }], # OS != "win"
680 ], # conditions 682 ], # conditions
681 }, 683 },
682 { 684 {
683 'target_name': 'ui_tests', 685 'target_name': 'ui_tests',
684 'type': 'executable', 686 'type': 'executable',
685 'dependencies': [ 687 'dependencies': [
686 'chrome', 688 'chrome',
(...skipping 3462 matching lines...) Expand 10 before | Expand all | Expand 10 after
4149 # Use outputs of this action as inputs for the main target build. 4151 # Use outputs of this action as inputs for the main target build.
4150 # Seems as a misnomer but makes this happy on Linux (scons). 4152 # Seems as a misnomer but makes this happy on Linux (scons).
4151 'process_outputs_as_sources': 1, 4153 'process_outputs_as_sources': 1,
4152 }, 4154 },
4153 ], # 'actions' 4155 ], # 'actions'
4154 }, 4156 },
4155 ] 4157 ]
4156 }], # 'coverage!=0' 4158 }], # 'coverage!=0'
4157 ], # 'conditions' 4159 ], # 'conditions'
4158 } 4160 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/constrained_window_views_browsertest.cc ('k') | views/view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698