| 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="e2fsprogs/files flimflam \ | 36 THIRD_PARTY_PACKAGES="e2fsprogs/files flimflam \ |
| 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 \ | 40 upstart/files wpa_supplicant \ |
| 41 xscreensaver/xscreensaver-5.08 xserver-xorg-core \ | 41 xscreensaver/xscreensaver-5.08 xserver-xorg-core \ |
| 42 xserver-xorg-video-intel" | 42 xserver-xorg-video-intel" |
| 43 | 43 |
| 44 if [ $FLAGS_stable -eq $FLAGS_TRUE ] | 44 if [ $FLAGS_stable -eq $FLAGS_TRUE ] |
| 45 then | 45 then |
| 46 # 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 |
| 47 export GET_STABLE_CHROME=1 | 47 export GET_STABLE_CHROME=1 |
| 48 fi | 48 fi |
| 49 | 49 |
| 50 # Build dh-chromeos really first. Some of third_party needs it. | 50 # Build dh-chromeos really first. Some of third_party needs it. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 77 # Build platform packages | 77 # Build platform packages |
| 78 for i in $PLATFORM_DIRS | 78 for i in $PLATFORM_DIRS |
| 79 do | 79 do |
| 80 echo "Building package ${i}..." | 80 echo "Building package ${i}..." |
| 81 cd "$PLATFORM_DIR/$i" | 81 cd "$PLATFORM_DIR/$i" |
| 82 ./make_pkg.sh | 82 ./make_pkg.sh |
| 83 cd - | 83 cd - |
| 84 done | 84 done |
| 85 | 85 |
| 86 echo "All packages built." | 86 echo "All packages built." |
| OLD | NEW |