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

Side by Side Diff: chrome/chrome.gyp

Issue 160480: Convert parts of SavePage UI tests to more reliable browser tests. (Closed)
Patch Set: Created 11 years, 4 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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'chromium_code': 1, 7 'chromium_code': 1,
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
11 # Linux or Mac, and into chrome.dll on Windows. 11 # Linux or Mac, and into chrome.dll on Windows.
12 'chromium_dependencies': [ 12 'chromium_dependencies': [
13 'common', 13 'common',
14 'browser', 14 'browser',
15 'debugger', 15 'debugger',
16 'renderer', 16 'renderer',
17 'utility', 17 'utility',
18 'worker', 18 'worker',
19 '../printing/printing.gyp:printing', 19 '../printing/printing.gyp:printing',
20 '../webkit/webkit.gyp:inspector_resources', 20 '../webkit/webkit.gyp:inspector_resources',
21 ], 21 ],
22 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 22 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
23 'mac_xib_localizer_tool_path': '<(DEPTH)/build/mac/generate_localizer', 23 'mac_xib_localizer_tool_path': '<(DEPTH)/build/mac/generate_localizer',
24 'mac_xib_localizers_dir': '<(INTERMEDIATE_DIR)/xib_localizers', 24 'mac_xib_localizers_dir': '<(INTERMEDIATE_DIR)/xib_localizers',
25 'browser_tests_sources': [ 25 'browser_tests_sources': [
26 'browser/browser_browsertest.cc', 26 'browser/browser_browsertest.cc',
27 'browser/crash_recovery_browsertest.cc', 27 'browser/crash_recovery_browsertest.cc',
28 'browser/download/save_page_browsertest.cc',
28 'browser/ssl/ssl_browser_tests.cc', 29 'browser/ssl/ssl_browser_tests.cc',
29 ], 30 ],
30 'browser_tests_sources_win_specific': [ 31 'browser_tests_sources_win_specific': [
31 'browser/extensions/extension_shelf_model_unittest.cc', 32 'browser/extensions/extension_shelf_model_unittest.cc',
32 'browser/extensions/extension_startup_unittest.cc', 33 'browser/extensions/extension_startup_unittest.cc',
33 'browser/extensions/extension_browsertest.cc', 34 'browser/extensions/extension_browsertest.cc',
34 'browser/extensions/extension_browsertest.h', 35 'browser/extensions/extension_browsertest.h',
35 'browser/extensions/extension_browsertests_misc.cc', 36 'browser/extensions/extension_browsertests_misc.cc',
36 'browser/views/browser_views_accessibility_browsertest.cc', 37 'browser/views/browser_views_accessibility_browsertest.cc',
37 'browser/views/find_bar_win_browsertest.cc', 38 'browser/views/find_bar_win_browsertest.cc',
(...skipping 5167 matching lines...) Expand 10 before | Expand all | Expand 10 after
5205 # Use outputs of this action as inputs for the main target build. 5206 # Use outputs of this action as inputs for the main target build.
5206 # Seems as a misnomer but makes this happy on Linux (scons). 5207 # Seems as a misnomer but makes this happy on Linux (scons).
5207 'process_outputs_as_sources': 1, 5208 'process_outputs_as_sources': 1,
5208 }, 5209 },
5209 ], # 'actions' 5210 ], # 'actions'
5210 }, 5211 },
5211 ] 5212 ]
5212 }], 5213 }],
5213 ], # 'conditions' 5214 ], # 'conditions'
5214 } 5215 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698