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

Unified Diff: third_party/WebKit/Source/devtools/scripts/js_build/test.sh

Issue 2464463002: Revert of DevTools: clean up scripts folder (Closed)
Patch Set: Created 4 years, 2 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/js_build/test.sh
diff --git a/third_party/WebKit/Source/devtools/scripts/js_build/test.sh b/third_party/WebKit/Source/devtools/scripts/js_build/test.sh
new file mode 100755
index 0000000000000000000000000000000000000000..ddfdbac97616caa327fa828973cbd36abd8b1391
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/scripts/js_build/test.sh
@@ -0,0 +1,15 @@
+#!/usr/bin/env bash
+# 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.
+
+SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)"
+
+CHROMIUM_ROOT_PATH=${SCRIPT_PATH}"/../../../../../.."
+OUT_PATH=${CHROMIUM_ROOT_PATH}"/out/Release"
+
+ninja -C ${OUT_PATH} -j 1000 chrome blink_tests
+npm run build
+echo =======================
+echo DIFF
+diff -rq ../../release ~/chromium/src/out/Release/resources/inspector | grep -ivE "out/Release/resources/inspector: debug$" | tee "release_mode_diff.txt"

Powered by Google App Engine
This is Rietveld 408576698