| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import re | 5 import re |
| 6 import string | 6 import string |
| 7 | 7 |
| 8 | 8 |
| 9 class Test(object): | 9 class Test(object): |
| 10 """ | 10 """ |
| (...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1242 GTestTest('ui_base_unittests'), | 1242 GTestTest('ui_base_unittests'), |
| 1243 GTestTest('ui_ios_unittests'), | 1243 GTestTest('ui_ios_unittests'), |
| 1244 GTestTest('sync_unit_tests'), | 1244 GTestTest('sync_unit_tests'), |
| 1245 GTestTest('sql_unittests'), | 1245 GTestTest('sql_unittests'), |
| 1246 ] | 1246 ] |
| 1247 | 1247 |
| 1248 GOMA_TESTS = [ | 1248 GOMA_TESTS = [ |
| 1249 GTestTest('base_unittests'), | 1249 GTestTest('base_unittests'), |
| 1250 GTestTest('content_unittests'), | 1250 GTestTest('content_unittests'), |
| 1251 ] | 1251 ] |
| OLD | NEW |