Commit 0581cde8 authored by Yuki Shiino's avatar Yuki Shiino Committed by Commit Bot

v8binding: Update PRESUBMIT.py to use inclusive wording (minor update)

Change-Id: I5e2f56fcad692d0a1b8c5cfaaeb7cdf824377c03
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2313616
Commit-Queue: Yuki Shiino <yukishiino@chromium.org>
Reviewed-by: default avatarKentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#791648}
parent db0cf440
...@@ -31,15 +31,12 @@ See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts ...@@ -31,15 +31,12 @@ See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
for more details about the presubmit API built into gcl. for more details about the presubmit API built into gcl.
""" """
# Make sure binding templates are considered as source files.
FILES_TO_CHECK = (r'.+\.tmpl$', )
# Changes to v8/ do not change generated code or tests, so exclude from
# _RunBindingsTests
FILES_TO_SKIP = (r'.*\bv8[\\\/].*', )
def _RunBindingsTests(input_api, output_api): def _RunBindingsTests(input_api, output_api):
# Make sure binding templates are considered as source files.
FILES_TO_CHECK = (r'.+\.tmpl$', )
# Changes to v8/ do not change generated code or tests.
FILES_TO_SKIP = (r'.*\bv8[\\\/].*', )
# Skip if nothing to do # Skip if nothing to do
source_filter = lambda x: input_api.FilterSourceFile( source_filter = lambda x: input_api.FilterSourceFile(
x, x,
......
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