Commit 8de902e9 authored by Kent Tamura's avatar Kent Tamura Committed by Commit Bot

Do not use input_api.DEFAULT_BLACKLIST in thrid_party/blink.

It blocks all third_party files except for third_party/WebKit.

NOPRESUBMIT=true

Bug: 836555
Change-Id: Id5695c88fa445bcf601d0f2e7a8040681f25c2fd
Reviewed-on: https://chromium-review.googlesource.com/1027011
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: default avatarKentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#553409}
parent c0d5b6c8
...@@ -41,9 +41,11 @@ BLACK_LIST = (r'.*\bv8[\\\/].*',) ...@@ -41,9 +41,11 @@ BLACK_LIST = (r'.*\bv8[\\\/].*',)
def _RunBindingsTests(input_api, output_api): def _RunBindingsTests(input_api, output_api):
# Skip if nothing to do # Skip if nothing to do
# TODO(tkent): Don't use input_api.DEFAULT_BLACK_LIST until we fix
# depot_tools. crbug.com/836555
source_filter = lambda x: input_api.FilterSourceFile( source_filter = lambda x: input_api.FilterSourceFile(
x, white_list=input_api.DEFAULT_WHITE_LIST + WHITE_LIST, x, white_list=input_api.DEFAULT_WHITE_LIST + WHITE_LIST,
black_list=input_api.DEFAULT_BLACK_LIST + BLACK_LIST) black_list=BLACK_LIST)
if not input_api.AffectedFiles(file_filter=source_filter): if not input_api.AffectedFiles(file_filter=source_filter):
return [] return []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment