OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # Load common constants. This should be the first executable line. | 7 # Load common constants. This should be the first executable line. |
8 # The path to common.sh should be relative to your script's location. | 8 # The path to common.sh should be relative to your script's location. |
9 . "$(dirname "$0")/common.sh" | 9 . "$(dirname "$0")/common.sh" |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 memento_softwareupdate pam_google window_manager \ | 30 memento_softwareupdate pam_google window_manager \ |
31 cros chrome screenlocker cryptohome \ | 31 cros chrome screenlocker cryptohome \ |
32 monitor_reconfig microbenchmark minijail metrics_collection \ | 32 monitor_reconfig microbenchmark minijail metrics_collection \ |
33 theme metrics_daemon" | 33 theme metrics_daemon" |
34 | 34 |
35 THIRD_PARTY_DIR="$SRC_ROOT/third_party" | 35 THIRD_PARTY_DIR="$SRC_ROOT/third_party" |
36 THIRD_PARTY_PACKAGES="connman e2fsprogs/files \ | 36 THIRD_PARTY_PACKAGES="connman e2fsprogs/files \ |
37 gflags google-breakpad gpt gtest \ | 37 gflags google-breakpad gpt gtest \ |
38 ibus ibus-chewing ibus-anthy ibus-hangul ibus-m17n \ | 38 ibus ibus-chewing ibus-anthy ibus-hangul ibus-m17n \ |
39 ply-image slim/src synaptics \ | 39 ply-image slim/src synaptics \ |
40 wpa_supplicant xscreensaver/xscreensaver-5.08 \ | 40 upstart/files wpa_supplicant \ |
41 xserver-xorg-core xserver-xorg-video-intel" | 41 xscreensaver/xscreensaver-5.08 xserver-xorg-core \ |
| 42 xserver-xorg-video-intel" |
42 | 43 |
43 if [ $FLAGS_stable -eq $FLAGS_TRUE ] | 44 if [ $FLAGS_stable -eq $FLAGS_TRUE ] |
44 then | 45 then |
45 # Passed to copy_chrome_zip.sh to get stable version of the browser | 46 # Passed to copy_chrome_zip.sh to get stable version of the browser |
46 export GET_STABLE_CHROME=1 | 47 export GET_STABLE_CHROME=1 |
47 fi | 48 fi |
48 | 49 |
49 # Build third_party packages first, since packages and libs depend on them. | 50 # Build third_party packages first, since packages and libs depend on them. |
50 for i in $THIRD_PARTY_PACKAGES | 51 for i in $THIRD_PARTY_PACKAGES |
51 do | 52 do |
(...skipping 18 matching lines...) Expand all Loading... |
70 # Build platform packages | 71 # Build platform packages |
71 for i in $PLATFORM_DIRS | 72 for i in $PLATFORM_DIRS |
72 do | 73 do |
73 echo "Building package ${i}..." | 74 echo "Building package ${i}..." |
74 cd "$PLATFORM_DIR/$i" | 75 cd "$PLATFORM_DIR/$i" |
75 ./make_pkg.sh | 76 ./make_pkg.sh |
76 cd - | 77 cd - |
77 done | 78 done |
78 | 79 |
79 echo "All packages built." | 80 echo "All packages built." |
OLD | NEW |