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

Side by Side Diff: chrome_frame/chrome_frame.gyp

Issue 9460019: Reduce flakiness in chrome_frame_tests.exe by having each run in a clean environment. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed compile break Created 8 years, 9 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_frame/test/automation_client_mock.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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 8
9 'variables': { 9 'variables': {
10 'version_py_path': '../tools/build/version.py', 10 'version_py_path': '../tools/build/version.py',
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 'test/mock_ie_event_sink_actions.h', 229 'test/mock_ie_event_sink_actions.h',
230 'test/mock_ie_event_sink_test.cc', 230 'test/mock_ie_event_sink_test.cc',
231 'test/mock_ie_event_sink_test.h', 231 'test/mock_ie_event_sink_test.h',
232 'test/navigation_test.cc', 232 'test/navigation_test.cc',
233 'test/proxy_factory_mock.cc', 233 'test/proxy_factory_mock.cc',
234 'test/proxy_factory_mock.h', 234 'test/proxy_factory_mock.h',
235 'test/run_all_unittests.cc', 235 'test/run_all_unittests.cc',
236 'test/simple_resource_loader_test.cc', 236 'test/simple_resource_loader_test.cc',
237 'test/simulate_input.cc', 237 'test/simulate_input.cc',
238 'test/simulate_input.h', 238 'test/simulate_input.h',
239 'test/test_scrubber.cc',
240 'test/test_scrubber.h',
239 'test/test_server.cc', 241 'test/test_server.cc',
240 'test/test_server.h', 242 'test/test_server.h',
241 'test/test_server_test.cc', 243 'test/test_server_test.cc',
242 'test/test_with_web_server.cc', 244 'test/test_with_web_server.cc',
243 'test/test_with_web_server.h', 245 'test/test_with_web_server.h',
244 'test/ui_test.cc', 246 'test/ui_test.cc',
245 'test/urlmon_moniker_tests.h', 247 'test/urlmon_moniker_tests.h',
246 'test/urlmon_moniker_integration_test.cc', 248 'test/urlmon_moniker_integration_test.cc',
247 'test/url_request_test.cc', 249 'test/url_request_test.cc',
248 'test/win_event_receiver.cc', 250 'test/win_event_receiver.cc',
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 'test/chrome_frame_ui_test_utils.h', 553 'test/chrome_frame_ui_test_utils.h',
552 'test/external_sites_test.cc', 554 'test/external_sites_test.cc',
553 'test/ie_event_sink.cc', 555 'test/ie_event_sink.cc',
554 'test/ie_event_sink.h', 556 'test/ie_event_sink.h',
555 'test/mock_ie_event_sink_actions.h', 557 'test/mock_ie_event_sink_actions.h',
556 'test/mock_ie_event_sink_test.cc', 558 'test/mock_ie_event_sink_test.cc',
557 'test/mock_ie_event_sink_test.h', 559 'test/mock_ie_event_sink_test.h',
558 'test/run_all_unittests.cc', 560 'test/run_all_unittests.cc',
559 'test/simulate_input.cc', 561 'test/simulate_input.cc',
560 'test/simulate_input.h', 562 'test/simulate_input.h',
563 'test/test_scrubber.cc',
564 'test/test_scrubber.h',
561 'test/test_server.cc', 565 'test/test_server.cc',
562 'test/test_server.h', 566 'test/test_server.h',
563 'test/test_with_web_server.cc', 567 'test/test_with_web_server.cc',
564 'test/test_with_web_server.h', 568 'test/test_with_web_server.h',
565 'test/win_event_receiver.cc', 569 'test/win_event_receiver.cc',
566 'test/win_event_receiver.h', 570 'test/win_event_receiver.h',
567 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_tab.h', 571 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_tab.h',
568 'chrome_tab.idl', 572 'chrome_tab.idl',
569 'test_utils.cc', 573 'test_utils.cc',
570 'test_utils.h', 574 'test_utils.h',
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1045 # Use outputs of this action as inputs for the main target build. 1049 # Use outputs of this action as inputs for the main target build.
1046 # Seems as a misnomer but makes this happy on Linux (scons). 1050 # Seems as a misnomer but makes this happy on Linux (scons).
1047 'process_outputs_as_sources': 1, 1051 'process_outputs_as_sources': 1,
1048 }, 1052 },
1049 ], 1053 ],
1050 }, 1054 },
1051 ], 1055 ],
1052 }, ], # 'coverage!=0' 1056 }, ], # 'coverage!=0'
1053 ], # 'conditions' 1057 ], # 'conditions'
1054 } 1058 }
OLDNEW
« no previous file with comments | « no previous file | chrome_frame/test/automation_client_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698