Commit 519d2da 1 parent b4b8b26 commit 519d2da Copy full SHA for 519d2da
File tree 1 file changed +15
-0
lines changed
src/main/java/com/google/devtools/build/lib/rules/cpp
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 15
15
package com .google .devtools .build .lib .rules .cpp ;
16
16
17
17
import com .google .common .base .Preconditions ;
18
+ import com .google .common .collect .ImmutableMap ;
18
19
import com .google .common .collect .ImmutableSet ;
19
20
import com .google .devtools .build .lib .actions .AbstractAction ;
20
21
import com .google .devtools .build .lib .actions .ActionAnalysisMetadata ;
29
30
import com .google .devtools .build .lib .actions .ArtifactRoot ;
30
31
import com .google .devtools .build .lib .analysis .RuleContext ;
31
32
import com .google .devtools .build .lib .analysis .actions .ActionConstructionContext ;
33
+ import com .google .devtools .build .lib .analysis .platform .PlatformInfo ;
32
34
import com .google .devtools .build .lib .cmdline .Label ;
33
35
import com .google .devtools .build .lib .collect .nestedset .NestedSetBuilder ;
34
36
import com .google .devtools .build .lib .collect .nestedset .Order ;
@@ -282,4 +284,17 @@ public boolean shouldReportPathPrefixConflict(ActionAnalysisMetadata action) {
282
284
public boolean mayInsensitivelyPropagateInputs () {
283
285
return true ;
284
286
}
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
+ }
285
300
}
You can’t perform that action at this time.
0 commit comments