Commit f85339de authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[test] Add unittests to fuchsia trybot

TBR=tmrts@chromium.org

No-Try: true
Bug: chromium:1021522
Change-Id: I54574e451487c497b478bc084e97f3ec450b2fa8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1910105Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Reviewed-by: 's avatarTamer Tas <tmrts@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#64999}
parent f9c5bbef
...@@ -47,6 +47,16 @@ ...@@ -47,6 +47,16 @@
], ],
}, },
############################################################################## ##############################################################################
# Fuchsia
'v8_fuchsia_rel_ng_triggered': {
'swarming_dimensions' : {
'os': 'Ubuntu-16.04',
},
'tests': [
{'name': 'unittests'},
],
},
##############################################################################
# Linux32 # Linux32
'v8_linux_dbg_ng_triggered': { 'v8_linux_dbg_ng_triggered': {
'swarming_dimensions' : { 'swarming_dimensions' : {
......
...@@ -726,7 +726,6 @@ class MetaBuildWrapper(object): ...@@ -726,7 +726,6 @@ class MetaBuildWrapper(object):
return ret return ret
android = 'target_os="android"' in vals['gn_args'] android = 'target_os="android"' in vals['gn_args']
fuchsia = 'target_os="fuchsia"' in vals['gn_args']
for target in swarming_targets: for target in swarming_targets:
if android: if android:
# Android targets may be either android_apk or executable. The former # Android targets may be either android_apk or executable. The former
...@@ -736,11 +735,6 @@ class MetaBuildWrapper(object): ...@@ -736,11 +735,6 @@ class MetaBuildWrapper(object):
runtime_deps_targets = [ runtime_deps_targets = [
target + '.runtime_deps', target + '.runtime_deps',
'obj/%s.stamp.runtime_deps' % label.replace(':', '/')] 'obj/%s.stamp.runtime_deps' % label.replace(':', '/')]
elif fuchsia:
# Only emit a runtime deps file for the group() target on Fuchsia.
label = isolate_map[target]['label']
runtime_deps_targets = [
'obj/%s.stamp.runtime_deps' % label.replace(':', '/')]
elif (isolate_map[target]['type'] == 'script' or elif (isolate_map[target]['type'] == 'script' or
isolate_map[target].get('label_type') == 'group'): isolate_map[target].get('label_type') == 'group'):
# For script targets, the build target is usually a group, # For script targets, the build target is usually a group,
......
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