blob: e42a940d25ac7c1ebd6ad2fdb4a8ae427f096366 [file] [log] [blame]
Primiano Tucci3faad742018-05-16 19:30:48 +01001#!/bin/bash
2# Copyright (C) 2018 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Hector Dearman262cbe22018-05-31 13:28:21 +010016UI_DIR="$(cd -P ${BASH_SOURCE[0]%/*}; pwd)"
17ROOT_DIR=$(dirname "$UI_DIR")
18NODE=$ROOT_DIR/buildtools/nodejs/bin/node
19LITE="$UI_DIR/node_modules/.bin/lite-server"
Deepanjan Royd7b03b22018-05-17 09:05:13 -040020
Hector Dearman262cbe22018-05-31 13:28:21 +010021if [ ! -f "$LITE" ]; then
Primiano Tucci3faad742018-05-16 19:30:48 +010022 echo "ERROR: cannot find lite-server. You need to run:"
23 echo " tools/install-build-deps --ui"
24 echo " ninja -C out/xxx ui"
25 exit 127
26fi
Hector Dearman262cbe22018-05-31 13:28:21 +010027if [ -z "$1" ]; then
28 echo "ERROR: no output directory specified."
29 echo "Usage: $0 out/mac_debug"
30 exit 127
31fi
32OUT_DIR="$1"
33UI_OUT_DIR="$OUT_DIR/ui"
34if [ ! -d $OUT_DIR ]; then
35 echo "ERROR: cannot find the output directory (\"$OUT_DIR\")"
36 echo "Did you run ninja?"
37 exit 127
38fi
39if [ ! -d $UI_OUT_DIR ]; then
40 echo "ERROR: cannot find the UI output directory (\"$UI_OUT_DIR\")."
41 echo "Did you run ninja ui?"
Primiano Tucci3faad742018-05-16 19:30:48 +010042 exit 127
43fi
44
Hector Dearman262cbe22018-05-31 13:28:21 +010045OUT_DIR="$OUT_DIR" ROOT_DIR="$ROOT_DIR" $NODE $LITE -c $UI_DIR/bs-config.js
46