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

Side by Side Diff: third_party/WebKit/Source/devtools/scripts/gulp/test.sh

Issue 2441163002: DevTools: clean up scripts folder (Closed)
Patch Set: Fix sys.path for chromevox to load rjsmin Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/env bash 1 #!/usr/bin/env bash
2 # Copyright 2016 The Chromium Authors. All rights reserved. 2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)" 6 SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)"
7 7
8 CHROMIUM_ROOT_PATH=${SCRIPT_PATH}"/../../../../../.." 8 CHROMIUM_ROOT_PATH=${SCRIPT_PATH}"/../../../../../.."
9 OUT_PATH=${CHROMIUM_ROOT_PATH}"/out/Release" 9 OUT_PATH=${CHROMIUM_ROOT_PATH}"/out/Release"
10 10
11 ninja -C ${OUT_PATH} -j 1000 chrome blink_tests 11 ninja -C ${OUT_PATH} -j 1000 chrome blink_tests
12 npm run build 12 npm run build
13 echo ======================= 13 echo =======================
14 echo DIFF 14 echo DIFF
15 diff -rq ../../release ~/chromium/src/out/Release/resources/inspector | grep -i vE "out/Release/resources/inspector: debug$" | tee "release_mode_diff.txt" 15 diff -rq ../../release ~/chromium/src/out/Release/resources/inspector | grep -i vE "out/Release/resources/inspector: debug$" | tee "release_mode_diff.txt"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698