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

Side by Side Diff: chrome/chrome.gyp

Issue 151046: Remove cache_uittest.cc.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add purify exception list to CL Created 11 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/net/cache_uitest.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) 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
(...skipping 3186 matching lines...) Expand 10 before | Expand all | Expand 10 after
3197 'browser/renderer_host/resource_dispatcher_host_uitest.cc', 3197 'browser/renderer_host/resource_dispatcher_host_uitest.cc',
3198 'browser/sanity_uitest.cc', 3198 'browser/sanity_uitest.cc',
3199 'browser/session_history_uitest.cc', 3199 'browser/session_history_uitest.cc',
3200 'browser/sessions/session_restore_uitest.cc', 3200 'browser/sessions/session_restore_uitest.cc',
3201 'browser/ssl/ssl_uitest.cc', 3201 'browser/ssl/ssl_uitest.cc',
3202 'browser/tab_contents/view_source_uitest.cc', 3202 'browser/tab_contents/view_source_uitest.cc',
3203 'browser/tab_restore_uitest.cc', 3203 'browser/tab_restore_uitest.cc',
3204 'browser/unload_uitest.cc', 3204 'browser/unload_uitest.cc',
3205 'browser/views/find_bar_win_uitest.cc', 3205 'browser/views/find_bar_win_uitest.cc',
3206 'common/logging_chrome_uitest.cc', 3206 'common/logging_chrome_uitest.cc',
3207 'common/net/cache_uitest.cc',
3208 'common/pref_service_uitest.cc', 3207 'common/pref_service_uitest.cc',
3209 'test/accessibility/accessibility_tests.cc', 3208 'test/accessibility/accessibility_tests.cc',
3210 'test/accessibility/accessibility_util.cc', 3209 'test/accessibility/accessibility_util.cc',
3211 'test/accessibility/accessibility_util.h', 3210 'test/accessibility/accessibility_util.h',
3212 'test/accessibility/browser_impl.cc', 3211 'test/accessibility/browser_impl.cc',
3213 'test/accessibility/browser_impl.h', 3212 'test/accessibility/browser_impl.h',
3214 'test/accessibility/constants.h', 3213 'test/accessibility/constants.h',
3215 'test/accessibility/keyboard_util.cc', 3214 'test/accessibility/keyboard_util.cc',
3216 'test/accessibility/keyboard_util.h', 3215 'test/accessibility/keyboard_util.h',
3217 'test/accessibility/registry_util.cc', 3216 'test/accessibility/registry_util.cc',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
3260 'browser/crash_recovery_uitest.cc', 3259 'browser/crash_recovery_uitest.cc',
3261 'browser/login_prompt_uitest.cc', 3260 'browser/login_prompt_uitest.cc',
3262 'browser/metrics/metrics_service_uitest.cc', 3261 'browser/metrics/metrics_service_uitest.cc',
3263 # leaves an extra window on screen after test completes. 3262 # leaves an extra window on screen after test completes.
3264 'browser/sessions/session_restore_uitest.cc', 3263 'browser/sessions/session_restore_uitest.cc',
3265 # puts up modal dialogs. 3264 # puts up modal dialogs.
3266 'browser/unload_uitest.cc', 3265 'browser/unload_uitest.cc',
3267 'test/reliability/page_load_test.cc', 3266 'test/reliability/page_load_test.cc',
3268 'test/ui/layout_plugin_uitest.cc', 3267 'test/ui/layout_plugin_uitest.cc',
3269 'test/ui/omnibox_uitest.cc', 3268 'test/ui/omnibox_uitest.cc',
3270 # these pass locally but fail on the bots
3271 'common/net/cache_uitest.cc',
3272 ], 3269 ],
3273 }], 3270 }],
3274 ['OS=="win"', { 3271 ['OS=="win"', {
3275 'include_dirs': [ 3272 'include_dirs': [
3276 'third_party/wtl/include', 3273 'third_party/wtl/include',
3277 ], 3274 ],
3278 'dependencies': [ 3275 'dependencies': [
3279 'crash_service', # run time dependency 3276 'crash_service', # run time dependency
3280 'test_support_common', 3277 'test_support_common',
3281 '../google_update/google_update.gyp:google_update', 3278 '../google_update/google_update.gyp:google_update',
(...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after
4839 # Use outputs of this action as inputs for the main target build. 4836 # Use outputs of this action as inputs for the main target build.
4840 # Seems as a misnomer but makes this happy on Linux (scons). 4837 # Seems as a misnomer but makes this happy on Linux (scons).
4841 'process_outputs_as_sources': 1, 4838 'process_outputs_as_sources': 1,
4842 }, 4839 },
4843 ], # 'actions' 4840 ], # 'actions'
4844 }, 4841 },
4845 ] 4842 ]
4846 }], 4843 }],
4847 ], # 'conditions' 4844 ], # 'conditions'
4848 } 4845 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/net/cache_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698