File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/main/java/com/google/devtools/build/lib/rules/cpp Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 1515package com .google .devtools .build .lib .rules .cpp ;
1616
1717import com .google .common .base .Preconditions ;
18+ import com .google .common .collect .ImmutableMap ;
1819import com .google .common .collect .ImmutableSet ;
1920import com .google .devtools .build .lib .actions .AbstractAction ;
2021import com .google .devtools .build .lib .actions .ActionAnalysisMetadata ;
2930import com .google .devtools .build .lib .actions .ArtifactRoot ;
3031import com .google .devtools .build .lib .analysis .RuleContext ;
3132import com .google .devtools .build .lib .analysis .actions .ActionConstructionContext ;
33+ import com .google .devtools .build .lib .analysis .platform .PlatformInfo ;
3234import com .google .devtools .build .lib .cmdline .Label ;
3335import com .google .devtools .build .lib .collect .nestedset .NestedSetBuilder ;
3436import com .google .devtools .build .lib .collect .nestedset .Order ;
@@ -282,4 +284,17 @@ public boolean shouldReportPathPrefixConflict(ActionAnalysisMetadata action) {
282284 public boolean mayInsensitivelyPropagateInputs () {
283285 return true ;
284286 }
287+
288+ @ Override
289+ @ Nullable
290+ public PlatformInfo getExecutionPlatform () {
291+ // SolibSymlinkAction is platform agnostic.
292+ return null ;
293+ }
294+
295+ @ Override
296+ public ImmutableMap <String , String > getExecProperties () {
297+ // SolibSymlinkAction is platform agnostic.
298+ return ImmutableMap .of ();
299+ }
285300}
You can’t perform that action at this time.
0 commit comments