| OLD | NEW |
| (Empty) | |
| 1 #!/bin/bash |
| 2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. |
| 5 # |
| 6 # This script generates the following files, based on the contents of |
| 7 # spec_input.html: |
| 8 # |
| 9 # - api.html: The human-readable API spec. |
| 10 # |
| 11 # - ../test/integration/protocol_matchers.dart: matchers to be used by |
| 12 # integration tests. |
| 13 |
| 14 set -e |
| 15 |
| 16 function follow_links() { |
| 17 file="$1" |
| 18 while [ -h "$file" ]; do |
| 19 # On Mac OS, readlink -f doesn't work. |
| 20 file="$(readlink "$file")" |
| 21 done |
| 22 echo "$file" |
| 23 } |
| 24 |
| 25 # Unlike $0, $BASH_SOURCE points to the absolute path of this file. |
| 26 PROG_NAME="$(follow_links "$BASH_SOURCE")" |
| 27 |
| 28 SCRIPT_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)" |
| 29 |
| 30 ROOT_DIR="$(cd "${SCRIPT_DIR}/../../.." ; pwd -P)" |
| 31 |
| 32 BIN_DIR="${ROOT_DIR}/sdk/bin" |
| 33 |
| 34 if [ -z "$DART_CONFIGURATION" ]; |
| 35 then |
| 36 DART_CONFIGURATION="ReleaseIA32" |
| 37 fi |
| 38 |
| 39 if [[ `uname` == 'Darwin' ]]; |
| 40 then |
| 41 BUILD_DIR="${ROOT_DIR}/xcodebuild/$DART_CONFIGURATION" |
| 42 else |
| 43 BUILD_DIR="${ROOT_DIR}/out/$DART_CONFIGURATION" |
| 44 fi |
| 45 |
| 46 PKG_DIR="${BUILD_DIR}/packages" |
| 47 |
| 48 DART="${BIN_DIR}/dart" |
| 49 |
| 50 declare -a VM_OPTIONS |
| 51 VM_OPTIONS+=("--checked") |
| 52 VM_OPTIONS+=("--package-root=${PKG_DIR}") |
| 53 |
| 54 cd "${SCRIPT_DIR}" |
| 55 "${DART}" "${VM_OPTIONS[@]}" "to_html.dart" |
| 56 "${DART}" "${VM_OPTIONS[@]}" "codegen_matchers.dart" |
| OLD | NEW |