File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -89,10 +89,7 @@ template("_compiled_action") {
8989 # it will exit with a non-zero status when the target program does.
9090 args = [ " compiled_action" ]
9191
92- if (_is_dart && use_rbe &&
93- (target_os == rbe_os ||
94- (target_os == " android" && rbe_os == " linux" )) &&
95- target_cpu == rbe_cpu ) {
92+ if (_is_dart && use_rbe && host_os == rbe_os && host_cpu == rbe_cpu ) {
9693 args += [
9794 " /usr/bin/python3" ,
9895 rebase_path (" //build/rbe/rewrapper_dart.py" , root_build_dir ),
@@ -142,10 +139,7 @@ template("_prebuilt_tool_action") {
142139
143140 args = [ " compiled_action" ]
144141
145- if (_is_dart && use_rbe &&
146- (target_os == rbe_os ||
147- (target_os == " android" && rbe_os == " linux" )) &&
148- target_cpu == rbe_cpu ) {
142+ if (_is_dart && use_rbe && host_os == rbe_os && host_cpu == rbe_cpu ) {
149143 args += [
150144 " /usr/bin/python3" ,
151145 rebase_path (" //build/rbe/rewrapper_dart.py" , root_build_dir ),
You can’t perform that action at this time.
0 commit comments