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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 8561031: Replace ScopedCommandLineOverride with TestSuite listener. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Last nit from Pawel. 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
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 'target_defaults': { 5 'target_defaults': {
6 'conditions': [ 6 'conditions': [
7 ['strip_tests==1', { 7 ['strip_tests==1', {
8 'cflags!': [ '-g' ], 8 'cflags!': [ '-g' ],
9 'ldflags': [ '-Wl,--strip-debug' ], 9 'ldflags': [ '-Wl,--strip-debug' ],
10 }], 10 }],
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 'test/base/chrome_render_view_host_test_harness.cc', 206 'test/base/chrome_render_view_host_test_harness.cc',
207 'test/base/chrome_render_view_host_test_harness.h', 207 'test/base/chrome_render_view_host_test_harness.h',
208 'test/base/chrome_test_suite.cc', 208 'test/base/chrome_test_suite.cc',
209 'test/base/chrome_test_suite.h', 209 'test/base/chrome_test_suite.h',
210 'test/base/in_process_browser_test.cc', 210 'test/base/in_process_browser_test.cc',
211 'test/base/in_process_browser_test.h', 211 'test/base/in_process_browser_test.h',
212 'test/base/model_test_utils.cc', 212 'test/base/model_test_utils.cc',
213 'test/base/model_test_utils.h', 213 'test/base/model_test_utils.h',
214 'test/base/profile_mock.cc', 214 'test/base/profile_mock.cc',
215 'test/base/profile_mock.h', 215 'test/base/profile_mock.h',
216 'test/base/scoped_command_line_override.cc',
217 'test/base/scoped_command_line_override.h',
218 'test/base/test_browser_window.cc', 216 'test/base/test_browser_window.cc',
219 'test/base/test_browser_window.h', 217 'test/base/test_browser_window.h',
220 'test/base/test_html_dialog_observer.cc', 218 'test/base/test_html_dialog_observer.cc',
221 'test/base/test_html_dialog_observer.h', 219 'test/base/test_html_dialog_observer.h',
222 'test/base/test_launcher_utils.cc', 220 'test/base/test_launcher_utils.cc',
223 'test/base/test_launcher_utils.h', 221 'test/base/test_launcher_utils.h',
224 'test/base/test_location_bar.cc', 222 'test/base/test_location_bar.cc',
225 'test/base/test_location_bar.h', 223 'test/base/test_location_bar.h',
226 'test/base/test_switches.cc', 224 'test/base/test_switches.cc',
227 'test/base/test_switches.h', 225 'test/base/test_switches.h',
(...skipping 4112 matching lines...) Expand 10 before | Expand all | Expand 10 after
4340 # Use outputs of this action as inputs for the main target build. 4338 # Use outputs of this action as inputs for the main target build.
4341 # Seems as a misnomer but makes this happy on Linux (scons). 4339 # Seems as a misnomer but makes this happy on Linux (scons).
4342 'process_outputs_as_sources': 1, 4340 'process_outputs_as_sources': 1,
4343 }, 4341 },
4344 ], # 'actions' 4342 ], # 'actions'
4345 }, 4343 },
4346 ] 4344 ]
4347 }], # 'coverage!=0' 4345 }], # 'coverage!=0'
4348 ], # 'conditions' 4346 ], # 'conditions'
4349 } 4347 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698