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 logging | 5 import logging |
6 import os | 6 import os |
7 import re | 7 import re |
8 import tempfile | 8 import tempfile |
9 | 9 |
10 from devil.android import apk_helper | 10 from devil.android import apk_helper |
(...skipping 24 matching lines...) Expand all Loading... |
35 'cc_perftests': 'cc/cc_perftests.isolate', | 35 'cc_perftests': 'cc/cc_perftests.isolate', |
36 'components_browsertests': 'components/components_browsertests.isolate', | 36 'components_browsertests': 'components/components_browsertests.isolate', |
37 'components_unittests': 'components/components_unittests.isolate', | 37 'components_unittests': 'components/components_unittests.isolate', |
38 'content_browsertests': 'content/content_browsertests.isolate', | 38 'content_browsertests': 'content/content_browsertests.isolate', |
39 'content_unittests': 'content/content_unittests.isolate', | 39 'content_unittests': 'content/content_unittests.isolate', |
40 'media_perftests': 'media/media_perftests.isolate', | 40 'media_perftests': 'media/media_perftests.isolate', |
41 'media_unittests': 'media/media_unittests.isolate', | 41 'media_unittests': 'media/media_unittests.isolate', |
42 'midi_unittests': 'media/midi/midi_unittests.isolate', | 42 'midi_unittests': 'media/midi/midi_unittests.isolate', |
43 'net_unittests': 'net/net_unittests.isolate', | 43 'net_unittests': 'net/net_unittests.isolate', |
44 'sql_unittests': 'sql/sql_unittests.isolate', | 44 'sql_unittests': 'sql/sql_unittests.isolate', |
45 'sync_unit_tests': 'components/sync/sync_unit_tests.isolate', | |
46 'ui_base_unittests': 'ui/base/ui_base_tests.isolate', | 45 'ui_base_unittests': 'ui/base/ui_base_tests.isolate', |
47 'unit_tests': 'chrome/unit_tests.isolate', | 46 'unit_tests': 'chrome/unit_tests.isolate', |
48 'webkit_unit_tests': | 47 'webkit_unit_tests': |
49 'third_party/WebKit/Source/web/WebKitUnitTests.isolate', | 48 'third_party/WebKit/Source/web/WebKitUnitTests.isolate', |
50 } | 49 } |
51 | 50 |
52 | 51 |
53 # Used for filtering large data deps at a finer grain than what's allowed in | 52 # Used for filtering large data deps at a finer grain than what's allowed in |
54 # isolate files since pushing deps to devices is expensive. | 53 # isolate files since pushing deps to devices is expensive. |
55 # Wildcards are allowed. | 54 # Wildcards are allowed. |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 if l and not l.startswith('#')] | 409 if l and not l.startswith('#')] |
411 | 410 |
412 return '*-%s' % ':'.join(disabled_filter_items) | 411 return '*-%s' % ':'.join(disabled_filter_items) |
413 | 412 |
414 #override | 413 #override |
415 def TearDown(self): | 414 def TearDown(self): |
416 """Clear the mappings created by SetUp.""" | 415 """Clear the mappings created by SetUp.""" |
417 if self._isolate_delegate: | 416 if self._isolate_delegate: |
418 self._isolate_delegate.Clear() | 417 self._isolate_delegate.Clear() |
419 | 418 |
OLD | NEW |