Commit 98babcf3 authored by newt's avatar newt Committed by Commit bot

Add OWNERS for chrome/android/java/res directory.

Changes to these files are always UI-related and should be reviewed by
someone familiar with Chrome Android UI.

Review URL: https://codereview.chromium.org/647043007

Cr-Commit-Position: refs/heads/master@{#300990}
parent ee197881
...@@ -126,6 +126,7 @@ def main(): ...@@ -126,6 +126,7 @@ def main():
'-I', android_jar, '-I', android_jar,
'-F', options.apk_path, '-F', options.apk_path,
'--ignore-assets', build_utils.AAPT_IGNORE_PATTERN,
] ]
if options.no_compress: if options.no_compress:
......
...@@ -21,6 +21,7 @@ import generate_v14_compatible_resources ...@@ -21,6 +21,7 @@ import generate_v14_compatible_resources
from util import build_utils from util import build_utils
def ParseArgs(args): def ParseArgs(args):
"""Parses command line options. """Parses command line options.
...@@ -220,7 +221,8 @@ def main(): ...@@ -220,7 +221,8 @@ def main():
'--auto-add-overlay', '--auto-add-overlay',
'-I', android_jar, '-I', android_jar,
'--output-text-symbols', gen_dir, '--output-text-symbols', gen_dir,
'-J', gen_dir] '-J', gen_dir,
'--ignore-assets', build_utils.AAPT_IGNORE_PATTERN]
for d in input_resource_dirs: for d in input_resource_dirs:
package_command += ['-S', d] package_command += ['-S', d]
...@@ -258,7 +260,8 @@ def main(): ...@@ -258,7 +260,8 @@ def main():
aapt_cmd = [aapt, aapt_cmd = [aapt,
'crunch', 'crunch',
'-C', crunch_dir, '-C', crunch_dir,
'-S', d] '-S', d,
'--ignore-assets', build_utils.AAPT_IGNORE_PATTERN]
build_utils.CheckOutput(aapt_cmd, stderr_filter=FilterCrunchStderr, build_utils.CheckOutput(aapt_cmd, stderr_filter=FilterCrunchStderr,
fail_func=DidCrunchFail) fail_func=DidCrunchFail)
......
...@@ -22,6 +22,9 @@ CHROMIUM_SRC = os.path.normpath( ...@@ -22,6 +22,9 @@ CHROMIUM_SRC = os.path.normpath(
os.pardir, os.pardir, os.pardir, os.pardir)) os.pardir, os.pardir, os.pardir, os.pardir))
COLORAMA_ROOT = os.path.join(CHROMIUM_SRC, COLORAMA_ROOT = os.path.join(CHROMIUM_SRC,
'third_party', 'colorama', 'src') 'third_party', 'colorama', 'src')
# aapt should ignore OWNERS files in addition the default ignore pattern.
AAPT_IGNORE_PATTERN = ('!OWNERS:!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:' +
'!CVS:!thumbs.db:!picasa.ini:!*~')
@contextlib.contextmanager @contextlib.contextmanager
......
set noparent
tedchoc@chromium.org
aurimas@chromium.org
newt@chromium.org
dtrainor@chromium.org
yusufo@chromium.org
dfalcantara@chromium.org
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