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

Side by Side Diff: samples/github/compile_mock_service.sh

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 months 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
« no previous file with comments | « samples/github/bin/run_github_mock.dart ('k') | samples/github/ios/compile.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 2
3 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 3 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
4 # for details. All rights reserved. Use of this source code is governed by a 4 # for details. All rights reserved. Use of this source code is governed by a
5 # BSD-style license that can be found in the LICENSE.md file. 5 # BSD-style license that can be found in the LICENSE.md file.
6 6
7 # This file compiles the github mock data files in to a single Dart file with a 7 # This file compiles the github mock data files in to a single Dart file with a
8 # hash-map of the raw file data and generates a snapshot for running the mock 8 # hash-map of the raw file data and generates a snapshot for running the mock
9 # server with this data. 9 # server with this data.
10 10
11 set -ue 11 set -ue
12 12
13 DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) 13 DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 $SERVICEC file "$IDL_FILE" out "$SERVICE_GEN_DIR" 50 $SERVICEC file "$IDL_FILE" out "$SERVICE_GEN_DIR"
51 fi 51 fi
52 52
53 if [[ $# -eq 0 ]] || [[ "$1" == "snapshot" ]]; then 53 if [[ $# -eq 0 ]] || [[ "$1" == "snapshot" ]]; then
54 cd $FLETCH_DIR 54 cd $FLETCH_DIR
55 $DART -c --packages=.packages \ 55 $DART -c --packages=.packages \
56 -Dsnapshot="$SNAPSHOT_FILE" \ 56 -Dsnapshot="$SNAPSHOT_FILE" \
57 -Dpackages="$PKG_FILE" \ 57 -Dpackages="$PKG_FILE" \
58 tests/fletchc/run.dart "$MOCK_FILE" 58 tests/fletchc/run.dart "$MOCK_FILE"
59 fi 59 fi
OLDNEW
« no previous file with comments | « samples/github/bin/run_github_mock.dart ('k') | samples/github/ios/compile.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698