Home | History | Annotate | Download | only in ui
      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 
     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"
     20 
     21 if [ ! -f "$LITE" ]; then
     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
     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?"
     42   exit 127
     43 fi
     44 
     45 OUT_DIR="$OUT_DIR" ROOT_DIR="$ROOT_DIR" $NODE $LITE -c $UI_DIR/bs-config.js
     46 
     47