| 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 20 matching lines...) Expand all Loading... |
| 31 PLATFORM_DIR="$SRC_ROOT/platform" | 31 PLATFORM_DIR="$SRC_ROOT/platform" |
| 32 | 32 |
| 33 PLATFORM_DIRS="acpi assets fake_hal init installer login_manager \ | 33 PLATFORM_DIRS="acpi assets fake_hal init installer login_manager \ |
| 34 memento_softwareupdate pam_google window_manager \ | 34 memento_softwareupdate pam_google window_manager \ |
| 35 cros chrome screenlocker cryptohome \ | 35 cros chrome screenlocker cryptohome \ |
| 36 monitor_reconfig microbenchmark minijail metrics_collection \ | 36 monitor_reconfig microbenchmark minijail metrics_collection \ |
| 37 theme metrics_daemon" | 37 theme metrics_daemon" |
| 38 | 38 |
| 39 THIRD_PARTY_DIR="$SRC_ROOT/third_party" | 39 THIRD_PARTY_DIR="$SRC_ROOT/third_party" |
| 40 THIRD_PARTY_PACKAGES="e2fsprogs/files flimflam \ | 40 THIRD_PARTY_PACKAGES="e2fsprogs/files flimflam \ |
| 41 gflags google-breakpad gpt gtest \ | 41 gflags google-breakpad gpt gtest gmock \ |
| 42 ibus ibus-chewing ibus-anthy ibus-hangul ibus-m17n \ | 42 ibus ibus-chewing ibus-anthy ibus-hangul ibus-m17n \ |
| 43 ply-image slim/src synaptics \ | 43 ply-image slim/src synaptics \ |
| 44 wpa_supplicant \ | 44 wpa_supplicant \ |
| 45 xscreensaver/xscreensaver-5.08 xserver-xorg-core \ | 45 xscreensaver/xscreensaver-5.08 xserver-xorg-core \ |
| 46 xserver-xorg-video-intel" | 46 xserver-xorg-video-intel" |
| 47 | 47 |
| 48 if [ $FLAGS_stable -eq $FLAGS_TRUE ] | 48 if [ $FLAGS_stable -eq $FLAGS_TRUE ] |
| 49 then | 49 then |
| 50 # Passed to copy_chrome_zip.sh to get stable version of the browser | 50 # Passed to copy_chrome_zip.sh to get stable version of the browser |
| 51 export GET_STABLE_CHROME=1 | 51 export GET_STABLE_CHROME=1 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 for i in $PLATFORM_DIRS | 91 for i in $PLATFORM_DIRS |
| 92 do | 92 do |
| 93 echo "Building package ${i}..." | 93 echo "Building package ${i}..." |
| 94 cd "$PLATFORM_DIR/$i" | 94 cd "$PLATFORM_DIR/$i" |
| 95 ./make_pkg.sh | 95 ./make_pkg.sh |
| 96 cd - | 96 cd - |
| 97 done | 97 done |
| 98 fi | 98 fi |
| 99 | 99 |
| 100 echo "All packages built." | 100 echo "All packages built." |
| OLD | NEW |