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

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

Issue 2464463002: Revert of DevTools: clean up scripts folder (Closed)
Patch Set: 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
(Empty)
1 #!/usr/bin/env bash
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
4 # found in the LICENSE file.
5
6 SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)"
7
8 CHROMIUM_ROOT_PATH=${SCRIPT_PATH}"/../../../../../.."
9 OUT_PATH=${CHROMIUM_ROOT_PATH}"/out/Release"
10
11 ninja -C ${OUT_PATH} -j 1000 chrome blink_tests
12 npm run build
13 echo =======================
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"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698