Index: tools/gn/exec_process.h |
diff --git a/tools/gn/exec_process.h b/tools/gn/exec_process.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..74622614819817c93f8003cb6c2c72a67641b5f8 |
--- /dev/null |
+++ b/tools/gn/exec_process.h |
@@ -0,0 +1,18 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include <string> |
+ |
+namespace base { |
+class CommandLine; |
+class FilePath; |
+} |
+ |
+namespace internal { |
+bool ExecProcess(const base::CommandLine& cmdline, |
+ const base::FilePath& startup_dir, |
+ std::string* std_out, |
+ std::string* std_err, |
+ int* exit_code); |
+} // namespace internal |