| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 collections | 5 import collections |
| 6 | 6 |
| 7 from recipe_engine.types import freeze | 7 from recipe_engine.types import freeze |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'amp', | 10 'amp', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'content/child/service_worker', | 55 'content/child/service_worker', |
| 56 'content/common/bluetooth', | 56 'content/common/bluetooth', |
| 57 'content/renderer/bluetooth', | 57 'content/renderer/bluetooth', |
| 58 'content/renderer/service_worker', | 58 'content/renderer/service_worker', |
| 59 'content/shell/browser/layout_test', | 59 'content/shell/browser/layout_test', |
| 60 'device/bluetooth', | 60 'device/bluetooth', |
| 61 'device/usb/public/interfaces', | 61 'device/usb/public/interfaces', |
| 62 'media', | 62 'media', |
| 63 'third_party/WebKit', | 63 'third_party/WebKit', |
| 64 'third_party/harfbuzz-ng', | 64 'third_party/harfbuzz-ng', |
| 65 'third_party/iccjpeg', |
| 66 'third_party/libjpeg', |
| 67 'third_party/libjpeg_turbo', |
| 68 'third_party/libpng', |
| 69 'third_party/libwebp', |
| 70 'third_party/qcms', |
| 71 'third_party/yasm', |
| 72 'third_party/zlib', |
| 65 'v8', | 73 'v8', |
| 66 ]) | 74 ]) |
| 67 | 75 |
| 68 | 76 |
| 69 def tests_in_compile_targets(api, compile_targets, tests): | 77 def tests_in_compile_targets(api, compile_targets, tests): |
| 70 """Returns the tests in |tests| that have at least one of their compile | 78 """Returns the tests in |tests| that have at least one of their compile |
| 71 targets in |compile_targets|.""" | 79 targets in |compile_targets|.""" |
| 72 result = [] | 80 result = [] |
| 73 for test in tests: | 81 for test in tests: |
| 74 test_compile_targets = test.compile_targets(api) | 82 test_compile_targets = test.compile_targets(api) |
| (...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 props(mastername='tryserver.v8', | 930 props(mastername='tryserver.v8', |
| 923 buildername='v8_linux_blink_rel', | 931 buildername='v8_linux_blink_rel', |
| 924 patch_project='v8') + | 932 patch_project='v8') + |
| 925 api.platform.name('linux') + | 933 api.platform.name('linux') + |
| 926 suppress_analyze(more_exclusions=['v8/f.*']) + | 934 suppress_analyze(more_exclusions=['v8/f.*']) + |
| 927 api.override_step_data('webkit_tests (with patch)', | 935 api.override_step_data('webkit_tests (with patch)', |
| 928 api.test_utils.canned_test_output(passing=False)) + | 936 api.test_utils.canned_test_output(passing=False)) + |
| 929 api.override_step_data('webkit_tests (without patch)', | 937 api.override_step_data('webkit_tests (without patch)', |
| 930 api.test_utils.canned_test_output(passing=True, minimal=True)) | 938 api.test_utils.canned_test_output(passing=True, minimal=True)) |
| 931 ) | 939 ) |
| OLD | NEW |