| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 # Distributed under the terms of the GNU General Public License v2 | 2 # Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 |
| 4 EAPI="2" | 4 EAPI="2" |
| 5 | 5 |
| 6 inherit cros-workon | 6 inherit cros-workon |
| 7 | 7 |
| 8 DESCRIPTION="Development utilities for ChromiumOS" | 8 DESCRIPTION="Development utilities for ChromiumOS" |
| 9 HOMEPAGE="http://www.chromium.org/" | 9 HOMEPAGE="http://www.chromium.org/" |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 insinto /usr/bin | 33 insinto /usr/bin |
| 34 | 34 |
| 35 if ! use cros_host; then | 35 if ! use cros_host; then |
| 36 doexe gmerge | 36 doexe gmerge |
| 37 doexe stateful_update | 37 doexe stateful_update |
| 38 else | 38 else |
| 39 doexe host/write_tegra_bios | 39 doexe host/write_tegra_bios |
| 40 doexe host/cros_overlay_list | 40 doexe host/cros_overlay_list |
| 41 doexe host/cros_workon | 41 doexe host/cros_workon |
| 42 doexe host/cros_choose_profile | 42 doexe host/cros_choose_profile |
| 43 doexe host/cros_sign_bootstub |
| 43 doexe host/willis | 44 doexe host/willis |
| 44 | 45 |
| 45 # Devserver and friends: | 46 # Devserver and friends: |
| 46 doexe host/start_devserver | 47 doexe host/start_devserver |
| 47 doexe devserver.py | 48 doexe devserver.py |
| 48 # TODO(zbehan): Used by image_to_live.sh, find out why, since th
e | 49 # TODO(zbehan): Used by image_to_live.sh, find out why, since th
e |
| 49 # target already has a copy. | 50 # target already has a copy. |
| 50 doexe stateful_update | 51 doexe stateful_update |
| 51 # These need to live with devserver, but not +x. | 52 # These need to live with devserver, but not +x. |
| 52 doins builder.py | 53 doins builder.py |
| (...skipping 27 matching lines...) Expand all Loading... |
| 80 TESTS+="builder_test.py " | 81 TESTS+="builder_test.py " |
| 81 TESTS+="devserver_test.py " | 82 TESTS+="devserver_test.py " |
| 82 #FIXME(zbehan): update_test.py doesn't seem to work right now. | 83 #FIXME(zbehan): update_test.py doesn't seem to work right now. |
| 83 fi | 84 fi |
| 84 | 85 |
| 85 for test in ${TESTS}; do | 86 for test in ${TESTS}; do |
| 86 einfo "Running ${test}" | 87 einfo "Running ${test}" |
| 87 ./${test} || die "Failed in ${test}" | 88 ./${test} || die "Failed in ${test}" |
| 88 done | 89 done |
| 89 } | 90 } |
| OLD | NEW |