Commit 91a5eb57 authored by John Budorick's avatar John Budorick Committed by Commit Bot

Support fuchsia in compare_build_artifacts.

Bug: 936114
Change-Id: Iec30e618b1361546d420dc36317bea8a9a3dd39d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1728052
Auto-Submit: John Budorick <jbudorick@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#682985}
parent 45f10e95
...@@ -381,8 +381,9 @@ def main(): ...@@ -381,8 +381,9 @@ def main():
target = { target = {
'darwin': 'mac', 'linux2': 'linux', 'win32': 'win' 'darwin': 'mac', 'linux2': 'linux', 'win32': 'win'
}.get(sys.platform, sys.platform) }.get(sys.platform, sys.platform)
parser.add_option('-t', '--target-platform', help='The target platform.', parser.add_option(
default=target, choices=('android', 'mac', 'linux', 'win')) '-t', '--target-platform', help='The target platform.',
default=target, choices=('android', 'fuchsia', 'mac', 'linux', 'win'))
options, _ = parser.parse_args() options, _ = parser.parse_args()
if not options.first_build_dir: if not options.first_build_dir:
......
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
'android': [ 'android': [
], ],
'fuchsia': [
],
# https://crbug.com/330263 # https://crbug.com/330263
'linux': [ 'linux': [
], ],
......
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