summaryrefslogtreecommitdiffstats
path: root/src/clean.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/clean.h')
-rw-r--r--src/clean.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/clean.h b/src/clean.h
index a007486..d044fb1 100644
--- a/src/clean.h
+++ b/src/clean.h
@@ -19,6 +19,7 @@
#include <string>
#include "build.h"
+#include "dyndep.h"
using namespace std;
@@ -91,8 +92,12 @@ struct Cleaner {
void DoCleanRule(const Rule* rule);
void Reset();
+ /// Load dependencies from dyndep bindings.
+ void LoadDyndeps();
+
State* state_;
const BuildConfig& config_;
+ DyndepLoader dyndep_loader_;
set<string> removed_;
set<Node*> cleaned_;
int cleaned_files_count_;