aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/CppCompileActionContext.java
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2017-01-27 10:02:36 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2017-01-27 10:13:25 +0000
commit7e7d6094b26e906ea0714e3b006f1458dfc3b825 (patch)
tree5fb6e002089b3a19ae7c9f1fe096df814fd06b09 /src/main/java/com/google/devtools/build/lib/rules/cpp/CppCompileActionContext.java
parentd6eaf589416338b03f6965009d1556099ca316ff (diff)
Unify CppCompileActionContext#{getScannedIncludeFiles,findAdditionalInputs}.
They differed only in reporting action state and the way they reported "no include scanning happened" so there was no reason to have both of them around. -- PiperOrigin-RevId: 145773972 MOS_MIGRATED_REVID=145773972
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/CppCompileActionContext.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/CppCompileActionContext.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppCompileActionContext.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppCompileActionContext.java
index b306fd06a8..33b83454b2 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppCompileActionContext.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppCompileActionContext.java
@@ -68,12 +68,4 @@ public interface CppCompileActionContext extends ActionContext {
* Returns the estimated resource consumption of the action.
*/
ResourceSet estimateResourceConsumption(CppCompileAction action);
-
- /**
- * Returns the include files that should be shipped to the executor in addition the ones that
- * were declared.
- */
- Collection<Artifact> getScannedIncludeFiles(
- CppCompileAction action, ActionExecutionContext actionExecutionContext)
- throws ActionExecutionException, InterruptedException;
}