| OLD | NEW |
| 1 # Copyright (c) 2014 Google Inc. All Rights Reserved. | 1 # Copyright (c) 2014 Google Inc. 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 '../net/net.gyp:net_unittests', | 104 '../net/net.gyp:net_unittests', |
| 105 '../ppapi/ppapi_internal.gyp:ppapi_unittests', | 105 '../ppapi/ppapi_internal.gyp:ppapi_unittests', |
| 106 '../sandbox/sandbox.gyp:sandbox_linux_unittests', | 106 '../sandbox/sandbox.gyp:sandbox_linux_unittests', |
| 107 '../sql/sql.gyp:sql_unittests', | 107 '../sql/sql.gyp:sql_unittests', |
| 108 '../sync/sync.gyp:sync_unit_tests', | 108 '../sync/sync.gyp:sync_unit_tests', |
| 109 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_unittests', | 109 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_unittests', |
| 110 '../ui/base/ui_base_tests.gyp:ui_base_unittests', | 110 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
| 111 '../url/url.gyp:url_unittests', | 111 '../url/url.gyp:url_unittests', |
| 112 ], | 112 ], |
| 113 'conditions': [ | 113 'conditions': [ |
| 114 ['target_arch=="arm" and OS!="android"', { | 114 ['is_cast_desktop_build==0 and OS!="android"', { |
| 115 'variables': { | 115 'variables': { |
| 116 'filters': [ | 116 'filters': [ |
| 117 # Run net_unittests first to avoid random failures due to slow pyt
hon startup | 117 # Run net_unittests first to avoid random failures due to slow pyt
hon startup |
| 118 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTes
t fail due to | 118 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTes
t fail due to |
| 119 # readonly certdb (b/8153161) | 119 # readonly certdb (b/8153161) |
| 120 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run.
Increase | 120 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run.
Increase |
| 121 # timeout to 90s from 45s to allow it to pass (b/19821476) | 121 # timeout to 90s from 45s to allow it to pass (b/19821476) |
| 122 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784) | 122 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784) |
| 123 # Running a batch of net_unittests has high overhead. Run tests in
batches of 25 to reduce number of batches (b/23156294). | 123 # Running a batch of net_unittests has high overhead. Run tests in
batches of 25 to reduce number of batches (b/23156294). |
| 124 'net_unittests --gtest_filter=-KeygenHandlerTest.SmokeTest:KeygenHa
ndlerTest.ConcurrencyTest:ProxyScriptFetcherImplTest.HttpMimeType --test-launche
r-timeout=90000 --test-launcher-batch-limit=25', | 124 'net_unittests --gtest_filter=-KeygenHandlerTest.SmokeTest:KeygenHa
ndlerTest.ConcurrencyTest:ProxyScriptFetcherImplTest.HttpMimeType --test-launche
r-timeout=90000 --test-launcher-batch-limit=25', |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 '-a', '<(test_additional_options)', | 417 '-a', '<(test_additional_options)', |
| 418 'pack_run', | 418 'pack_run', |
| 419 ], | 419 ], |
| 420 } | 420 } |
| 421 ], | 421 ], |
| 422 }, | 422 }, |
| 423 ], # end of targets | 423 ], # end of targets |
| 424 }], | 424 }], |
| 425 ], # end of conditions | 425 ], # end of conditions |
| 426 } | 426 } |
| OLD | NEW |