Primiano Tucci | 3faad74 | 2018-05-16 19:30:48 +0100 | [diff] [blame] | 1 | #!/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 Dearman | 262cbe2 | 2018-05-31 13:28:21 +0100 | [diff] [blame] | 16 | UI_DIR="$(cd -P ${BASH_SOURCE[0]%/*}; pwd)" |
| 17 | ROOT_DIR=$(dirname "$UI_DIR") |
| 18 | NODE=$ROOT_DIR/buildtools/nodejs/bin/node |
| 19 | LITE="$UI_DIR/node_modules/.bin/lite-server" |
Deepanjan Roy | d7b03b2 | 2018-05-17 09:05:13 -0400 | [diff] [blame] | 20 | |
Hector Dearman | 262cbe2 | 2018-05-31 13:28:21 +0100 | [diff] [blame] | 21 | if [ ! -f "$LITE" ]; then |
Primiano Tucci | 3faad74 | 2018-05-16 19:30:48 +0100 | [diff] [blame] | 22 | 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 |
| 26 | fi |
Hector Dearman | 262cbe2 | 2018-05-31 13:28:21 +0100 | [diff] [blame] | 27 | if [ -z "$1" ]; then |
| 28 | echo "ERROR: no output directory specified." |
| 29 | echo "Usage: $0 out/mac_debug" |
| 30 | exit 127 |
| 31 | fi |
| 32 | OUT_DIR="$1" |
| 33 | UI_OUT_DIR="$OUT_DIR/ui" |
| 34 | if [ ! -d $OUT_DIR ]; then |
| 35 | echo "ERROR: cannot find the output directory (\"$OUT_DIR\")" |
| 36 | echo "Did you run ninja?" |
| 37 | exit 127 |
| 38 | fi |
| 39 | if [ ! -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 Tucci | 3faad74 | 2018-05-16 19:30:48 +0100 | [diff] [blame] | 42 | exit 127 |
| 43 | fi |
| 44 | |
Hector Dearman | 262cbe2 | 2018-05-31 13:28:21 +0100 | [diff] [blame] | 45 | OUT_DIR="$OUT_DIR" ROOT_DIR="$ROOT_DIR" $NODE $LITE -c $UI_DIR/bs-config.js |
| 46 | |