Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: third_party/WebKit/Source/devtools/scripts/devtools_run/devtools_run_cli

Issue 2637113003: DevTools: dtrun CLI helper (Closed)
Patch Set: rename file Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/scripts/devtools_run/devtools_run_cli
diff --git a/third_party/WebKit/Source/devtools/scripts/devtools_run/devtools_run_cli b/third_party/WebKit/Source/devtools/scripts/devtools_run/devtools_run_cli
new file mode 100755
index 0000000000000000000000000000000000000000..4b50ead7224bb21746a6760562fa9521a4cc6d9d
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/scripts/devtools_run/devtools_run_cli
@@ -0,0 +1,49 @@
+#!/usr/bin/env node
+
+// Copyright 2016 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.
+
+var childProcess = require('child_process');
+var fs = require('fs');
+var path = require('path');
+var shell = require('child_process').execSync;
+
+var repoRootPath;
+try {
+ repoRootPath = shellOutput('git rev-parse --show-toplevel');
+} catch (error) {
+ console.log('ERROR: cannot use dtrun outside of chromium repo');
+ process.exit(1);
+}
+
+var devtoolsPath = path.join(repoRootPath, 'third_party', 'WebKit', 'Source', 'devtools');
+
+if (!isDir(devtoolsPath)) {
+ console.log('ERROR: cannot use dtrun outside of chromium repo');
+ process.exit(1);
+}
+
+var npmPath = shellOutput('which npm');
+var args = ['run'];
+if (process.argv.length > 2) {
+ args.push(process.argv[2]);
+ args.push('--');
+ args = args.concat(process.argv.slice(3));
+}
+var child = childProcess.spawn(npmPath, args, {
+ cwd: devtoolsPath,
+ stdio: 'inherit',
+});
+
+function shellOutput(command) {
+ return shell(command).toString().trim();
+}
+
+function isDir(path) {
+ try {
+ return fs.statSync(path).isDirectory();
+ } catch (error) {
+ return false;
+ }
+}
« no previous file with comments | « third_party/WebKit/Source/devtools/readme.md ('k') | third_party/WebKit/Source/devtools/scripts/devtools_run/package.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698