Joe Onorato | 344e404 | 2022-12-05 15:15:36 -0800 | [diff] [blame] | 1 | # Copyright (C) 2022 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | # gettop is duplicated here and in shell_utils.mk, because it's difficult |
| 16 | # to find shell_utils.make without it for all the novel ways this file can be |
| 17 | # sourced. Other common functions should only be in one place or the other. |
| 18 | function _gettop_once |
| 19 | { |
| 20 | local TOPFILE=build/make/core/envsetup.mk |
| 21 | if [ -n "$TOP" -a -f "$TOP/$TOPFILE" ] ; then |
| 22 | # The following circumlocution ensures we remove symlinks from TOP. |
| 23 | (cd "$TOP"; PWD= /bin/pwd) |
| 24 | else |
| 25 | if [ -f $TOPFILE ] ; then |
| 26 | # The following circumlocution (repeated below as well) ensures |
| 27 | # that we record the true directory name and not one that is |
| 28 | # faked up with symlink names. |
| 29 | PWD= /bin/pwd |
| 30 | else |
| 31 | local HERE=$PWD |
| 32 | local T= |
| 33 | while [ \( ! \( -f $TOPFILE \) \) -a \( "$PWD" != "/" \) ]; do |
| 34 | \cd .. |
| 35 | T=`PWD= /bin/pwd -P` |
| 36 | done |
| 37 | \cd "$HERE" |
| 38 | if [ -f "$T/$TOPFILE" ]; then |
| 39 | echo "$T" |
| 40 | fi |
| 41 | fi |
| 42 | fi |
| 43 | } |
| 44 | T=$(_gettop_once) |
| 45 | if [ ! "$T" ]; then |
| 46 | echo "Couldn't locate the top of the tree. Always source build/envsetup.sh from the root of the tree." >&2 |
| 47 | return 1 |
| 48 | fi |
| 49 | IMPORTING_ENVSETUP=true source $T/build/make/shell_utils.sh |
| 50 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 51 | # Get all the build variables needed by this script in a single call to the build system. |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 52 | function build_build_var_cache() |
| 53 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 54 | local T=$(gettop) |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 55 | # Grep out the variable names from the script. |
Alexander Martinz | e2761e7 | 2022-04-07 18:02:53 +0200 | [diff] [blame] | 56 | cached_vars=(`cat $T/build/envsetup.sh $T/vendor/lineage/build/envsetup.sh $T/vendor/shiftos/build/envsetup.sh | tr '()' ' ' | awk '{for(i=1;i<=NF;i++) if($i~/_get_build_var_cached/) print $(i+1)}' | sort -u | tr '\n' ' '`) |
| 57 | cached_abs_vars=(`cat $T/build/envsetup.sh $T/vendor/lineage/build/envsetup.sh $T/vendor/shiftos/build/envsetup.sh | tr '()' ' ' | awk '{for(i=1;i<=NF;i++) if($i~/_get_abs_build_var_cached/) print $(i+1)}' | sort -u | tr '\n' ' '`) |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 58 | # Call the build system to dump the "<val>=<value>" pairs as a shell script. |
Steven Moreland | 0540296 | 2018-01-05 12:13:11 -0800 | [diff] [blame] | 59 | build_dicts_script=`\builtin cd $T; build/soong/soong_ui.bash --dumpvars-mode \ |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 60 | --vars="${cached_vars[*]}" \ |
| 61 | --abs-vars="${cached_abs_vars[*]}" \ |
Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 62 | --var-prefix=var_cache_ \ |
| 63 | --abs-var-prefix=abs_var_cache_` |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 64 | local ret=$? |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 65 | if [ $ret -ne 0 ] |
| 66 | then |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 67 | unset build_dicts_script |
| 68 | return $ret |
| 69 | fi |
Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 70 | # Execute the script to store the "<val>=<value>" pairs as shell variables. |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 71 | eval "$build_dicts_script" |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 72 | ret=$? |
Ying Wang | f0cb397 | 2016-03-04 13:56:23 -0800 | [diff] [blame] | 73 | unset build_dicts_script |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 74 | if [ $ret -ne 0 ] |
| 75 | then |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 76 | return $ret |
| 77 | fi |
| 78 | BUILD_VAR_CACHE_READY="true" |
| 79 | } |
| 80 | |
Ying Wang | f0cb397 | 2016-03-04 13:56:23 -0800 | [diff] [blame] | 81 | # Delete the build var cache, so that we can still call into the build system |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 82 | # to get build variables not listed in this script. |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 83 | function destroy_build_var_cache() |
| 84 | { |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 85 | unset BUILD_VAR_CACHE_READY |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 86 | local v |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 87 | for v in $cached_vars; do |
| 88 | unset var_cache_$v |
| 89 | done |
| 90 | unset cached_vars |
| 91 | for v in $cached_abs_vars; do |
| 92 | unset abs_var_cache_$v |
| 93 | done |
| 94 | unset cached_abs_vars |
| 95 | } |
| 96 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 97 | # Get the value of a build variable as an absolute path. |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 98 | function _get_abs_build_var_cached() |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 99 | { |
| 100 | if [ "$BUILD_VAR_CACHE_READY" = "true" ] |
| 101 | then |
Vishwath Mohan | 7d35f00 | 2016-03-11 10:00:40 -0800 | [diff] [blame] | 102 | eval "echo \"\${abs_var_cache_$1}\"" |
Timi | 0469c3f | 2021-04-15 16:41:18 +0200 | [diff] [blame] | 103 | return |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 104 | fi |
| 105 | |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 106 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 107 | if [ ! "$T" ]; then |
| 108 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
| 109 | return |
| 110 | fi |
Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 111 | (\cd $T; build/soong/soong_ui.bash --dumpvar-mode --abs $1) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | # Get the exact value of a build variable. |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 115 | function _get_build_var_cached() |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 116 | { |
| 117 | if [ "$BUILD_VAR_CACHE_READY" = "true" ] |
| 118 | then |
Vishwath Mohan | 7d35f00 | 2016-03-11 10:00:40 -0800 | [diff] [blame] | 119 | eval "echo \"\${var_cache_$1}\"" |
Roland Levillain | 23c46cf | 2020-03-31 16:11:05 +0100 | [diff] [blame] | 120 | return 0 |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 121 | fi |
| 122 | |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 123 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 124 | if [ ! "$T" ]; then |
| 125 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
Roland Levillain | 23c46cf | 2020-03-31 16:11:05 +0100 | [diff] [blame] | 126 | return 1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 127 | fi |
Dan Willemsen | af88c41 | 2017-07-14 11:29:44 -0700 | [diff] [blame] | 128 | (\cd $T; build/soong/soong_ui.bash --dumpvar-mode $1) |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 129 | } |
| 130 | |
Joe Onorato | 32b2aa3 | 2024-05-14 13:54:13 -0700 | [diff] [blame] | 131 | # This logic matches envsetup.mk |
| 132 | function get_host_prebuilt_prefix |
| 133 | { |
| 134 | local un=$(uname) |
| 135 | if [[ $un == "Linux" ]] ; then |
| 136 | echo linux-x86 |
| 137 | elif [[ $un == "Darwin" ]] ; then |
| 138 | echo darwin-x86 |
| 139 | else |
| 140 | echo "Error: Invalid host operating system: $un" 1>&2 |
| 141 | fi |
| 142 | } |
| 143 | |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 144 | # Add directories to PATH that are dependent on the lunch target. |
| 145 | # For directories that are not lunch-specific, add them in set_global_paths |
| 146 | function set_lunch_paths() |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 147 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 148 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 149 | if [ ! "$T" ]; then |
| 150 | echo "Couldn't locate the top of the tree. Try setting TOP." |
| 151 | return |
| 152 | fi |
| 153 | |
| 154 | ################################################################## |
| 155 | # # |
| 156 | # Read me before you modify this code # |
| 157 | # # |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 158 | # This function sets ANDROID_LUNCH_BUILD_PATHS to what it is # |
| 159 | # adding to PATH, and the next time it is run, it removes that # |
| 160 | # from PATH. This is required so lunch can be run more than # |
| 161 | # once and still have working paths. # |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 162 | # # |
| 163 | ################################################################## |
| 164 | |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 165 | # Note: on windows/cygwin, ANDROID_LUNCH_BUILD_PATHS will contain spaces |
Raphael Moll | c639c78 | 2011-06-20 17:25:01 -0700 | [diff] [blame] | 166 | # due to "C:\Program Files" being in the path. |
| 167 | |
Kevin Dagostino | 185109b | 2024-01-11 17:39:02 +0000 | [diff] [blame] | 168 | # Handle compat with the old ANDROID_BUILD_PATHS variable. |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 169 | # TODO: Remove this after we think everyone has lunched again. |
| 170 | if [ -z "$ANDROID_LUNCH_BUILD_PATHS" -a -n "$ANDROID_BUILD_PATHS" ] ; then |
| 171 | ANDROID_LUNCH_BUILD_PATHS="$ANDROID_BUILD_PATHS" |
| 172 | ANDROID_BUILD_PATHS= |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 173 | fi |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 174 | if [ -n "$ANDROID_PRE_BUILD_PATHS" ] ; then |
Doug Zongker | 2903498 | 2011-04-22 08:16:56 -0700 | [diff] [blame] | 175 | export PATH=${PATH/$ANDROID_PRE_BUILD_PATHS/} |
Ying Wang | aa1c9b5 | 2012-11-26 20:51:59 -0800 | [diff] [blame] | 176 | # strip leading ':', if any |
| 177 | export PATH=${PATH/:%/} |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 178 | ANDROID_PRE_BUILD_PATHS= |
Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 179 | fi |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 180 | |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 181 | # Out with the old... |
| 182 | if [ -n "$ANDROID_LUNCH_BUILD_PATHS" ] ; then |
| 183 | export PATH=${PATH/$ANDROID_LUNCH_BUILD_PATHS/} |
| 184 | fi |
Ben Cheng | fba67bf | 2014-02-25 10:27:07 -0800 | [diff] [blame] | 185 | |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 186 | # And in with the new... |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 187 | ANDROID_LUNCH_BUILD_PATHS=$(_get_abs_build_var_cached SOONG_HOST_OUT_EXECUTABLES) |
| 188 | ANDROID_LUNCH_BUILD_PATHS+=:$(_get_abs_build_var_cached HOST_OUT_EXECUTABLES) |
Yueyao Zhu | efc786a | 2017-04-07 14:11:54 -0700 | [diff] [blame] | 189 | |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 190 | # Append llvm binutils prebuilts path to ANDROID_LUNCH_BUILD_PATHS. |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 191 | local ANDROID_LLVM_BINUTILS=$(_get_abs_build_var_cached ANDROID_CLANG_PREBUILTS)/llvm-binutils-stable |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 192 | ANDROID_LUNCH_BUILD_PATHS+=:$ANDROID_LLVM_BINUTILS |
David 'Digit' Turner | 94d16e5 | 2014-05-05 16:13:50 +0200 | [diff] [blame] | 193 | |
Stephen Hines | aa8d72c | 2020-02-04 09:15:18 -0800 | [diff] [blame] | 194 | # Set up ASAN_SYMBOLIZER_PATH for SANITIZE_HOST=address builds. |
| 195 | export ASAN_SYMBOLIZER_PATH=$ANDROID_LLVM_BINUTILS/llvm-symbolizer |
| 196 | |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 197 | # Append asuite prebuilts path to ANDROID_LUNCH_BUILD_PATHS. |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 198 | local os_arch=$(_get_build_var_cached HOST_PREBUILT_TAG) |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 199 | ANDROID_LUNCH_BUILD_PATHS+=:$T/prebuilts/asuite/acloud/$os_arch |
| 200 | ANDROID_LUNCH_BUILD_PATHS+=:$T/prebuilts/asuite/aidegen/$os_arch |
| 201 | ANDROID_LUNCH_BUILD_PATHS+=:$T/prebuilts/asuite/atest/$os_arch |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 202 | |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 203 | export ANDROID_JAVA_HOME=$(_get_abs_build_var_cached ANDROID_JAVA_HOME) |
Colin Cross | e97e693 | 2017-06-30 16:01:45 -0700 | [diff] [blame] | 204 | export JAVA_HOME=$ANDROID_JAVA_HOME |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 205 | export ANDROID_JAVA_TOOLCHAIN=$(_get_abs_build_var_cached ANDROID_JAVA_TOOLCHAIN) |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 206 | ANDROID_LUNCH_BUILD_PATHS+=:$ANDROID_JAVA_TOOLCHAIN |
| 207 | |
| 208 | # Fix up PYTHONPATH |
| 209 | if [ -n $ANDROID_PYTHONPATH ]; then |
| 210 | export PYTHONPATH=${PYTHONPATH//$ANDROID_PYTHONPATH/} |
| 211 | fi |
Dan Albert | 0d6d359 | 2023-01-26 00:07:03 +0000 | [diff] [blame] | 212 | # //development/python-packages contains both a pseudo-PYTHONPATH which |
| 213 | # mimics an already assembled venv, but also contains real Python packages |
| 214 | # that are not in that layout until they are installed. We can fake it for |
| 215 | # the latter type by adding the package source directories to the PYTHONPATH |
| 216 | # directly. For the former group, we only need to add the python-packages |
| 217 | # directory itself. |
| 218 | # |
| 219 | # This could be cleaned up by converting the remaining packages that are in |
| 220 | # the first category into a typical python source layout (that is, another |
| 221 | # layer of directory nesting) and automatically adding all subdirectories of |
| 222 | # python-packages to the PYTHONPATH instead of manually curating this. We |
| 223 | # can't convert the packages like adb to the other style because doing so |
| 224 | # would prevent exporting type info from those packages. |
| 225 | # |
| 226 | # http://b/266688086 |
Dan Albert | 426ac69 | 2023-05-16 22:59:55 +0000 | [diff] [blame] | 227 | export ANDROID_PYTHONPATH=$T/development/python-packages/adb:$T/development/python-packages/gdbrunner:$T/development/python-packages: |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 228 | if [ -n $VENDOR_PYTHONPATH ]; then |
| 229 | ANDROID_PYTHONPATH=$ANDROID_PYTHONPATH$VENDOR_PYTHONPATH |
| 230 | fi |
| 231 | export PYTHONPATH=$ANDROID_PYTHONPATH$PYTHONPATH |
Jeff Hamilton | 4a1c70e | 2010-06-21 18:26:38 -0500 | [diff] [blame] | 232 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 233 | unset ANDROID_PRODUCT_OUT |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 234 | export ANDROID_PRODUCT_OUT=$(_get_abs_build_var_cached PRODUCT_OUT) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 235 | export OUT=$ANDROID_PRODUCT_OUT |
| 236 | |
Jeff Brown | 8fd5cce | 2011-03-24 17:03:06 -0700 | [diff] [blame] | 237 | unset ANDROID_HOST_OUT |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 238 | export ANDROID_HOST_OUT=$(_get_abs_build_var_cached HOST_OUT) |
Jeff Brown | 8fd5cce | 2011-03-24 17:03:06 -0700 | [diff] [blame] | 239 | |
Jiyong Park | c02b1c4 | 2020-11-03 11:06:39 +0900 | [diff] [blame] | 240 | unset ANDROID_SOONG_HOST_OUT |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 241 | export ANDROID_SOONG_HOST_OUT=$(_get_abs_build_var_cached SOONG_HOST_OUT) |
Jiyong Park | c02b1c4 | 2020-11-03 11:06:39 +0900 | [diff] [blame] | 242 | |
Simran Basi | dd050ed | 2017-02-13 13:46:48 -0800 | [diff] [blame] | 243 | unset ANDROID_HOST_OUT_TESTCASES |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 244 | export ANDROID_HOST_OUT_TESTCASES=$(_get_abs_build_var_cached HOST_OUT_TESTCASES) |
Simran Basi | dd050ed | 2017-02-13 13:46:48 -0800 | [diff] [blame] | 245 | |
| 246 | unset ANDROID_TARGET_OUT_TESTCASES |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 247 | export ANDROID_TARGET_OUT_TESTCASES=$(_get_abs_build_var_cached TARGET_OUT_TESTCASES) |
Simran Basi | dd050ed | 2017-02-13 13:46:48 -0800 | [diff] [blame] | 248 | |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 249 | # Finally, set PATH |
Joe Onorato | 1cb9e15 | 2022-12-05 16:56:15 -0800 | [diff] [blame] | 250 | export PATH=$ANDROID_LUNCH_BUILD_PATHS:$PATH |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | # Add directories to PATH that are NOT dependent on the lunch target. |
| 254 | # For directories that are lunch-specific, add them in set_lunch_paths |
| 255 | function set_global_paths() |
| 256 | { |
| 257 | local T=$(gettop) |
| 258 | if [ ! "$T" ]; then |
| 259 | echo "Couldn't locate the top of the tree. Try setting TOP." |
| 260 | return |
| 261 | fi |
| 262 | |
| 263 | ################################################################## |
| 264 | # # |
| 265 | # Read me before you modify this code # |
| 266 | # # |
| 267 | # This function sets ANDROID_GLOBAL_BUILD_PATHS to what it is # |
| 268 | # adding to PATH, and the next time it is run, it removes that # |
| 269 | # from PATH. This is required so envsetup.sh can be sourced # |
| 270 | # more than once and still have working paths. # |
| 271 | # # |
| 272 | ################################################################## |
| 273 | |
| 274 | # Out with the old... |
| 275 | if [ -n "$ANDROID_GLOBAL_BUILD_PATHS" ] ; then |
| 276 | export PATH=${PATH/$ANDROID_GLOBAL_BUILD_PATHS/} |
| 277 | fi |
| 278 | |
| 279 | # And in with the new... |
Joe Onorato | 84e61d0 | 2024-02-02 22:53:39 -0800 | [diff] [blame] | 280 | ANDROID_GLOBAL_BUILD_PATHS=$T/build/soong/bin |
LaMont Jones | e8a3be2 | 2024-02-12 09:55:41 -0800 | [diff] [blame] | 281 | ANDROID_GLOBAL_BUILD_PATHS+=:$T/build/bazel/bin |
Joe Onorato | 1cb9e15 | 2022-12-05 16:56:15 -0800 | [diff] [blame] | 282 | ANDROID_GLOBAL_BUILD_PATHS+=:$T/development/scripts |
| 283 | ANDROID_GLOBAL_BUILD_PATHS+=:$T/prebuilts/devtools/tools |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 284 | |
| 285 | # add kernel specific binaries |
| 286 | if [ $(uname -s) = Linux ] ; then |
| 287 | ANDROID_GLOBAL_BUILD_PATHS+=:$T/prebuilts/misc/linux-x86/dtc |
| 288 | ANDROID_GLOBAL_BUILD_PATHS+=:$T/prebuilts/misc/linux-x86/libufdt |
| 289 | fi |
| 290 | |
| 291 | # If prebuilts/android-emulator/<system>/ exists, prepend it to our PATH |
| 292 | # to ensure that the corresponding 'emulator' binaries are used. |
| 293 | case $(uname -s) in |
| 294 | Darwin) |
| 295 | ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/darwin-x86_64 |
| 296 | ;; |
| 297 | Linux) |
| 298 | ANDROID_EMULATOR_PREBUILTS=$T/prebuilts/android-emulator/linux-x86_64 |
| 299 | ;; |
| 300 | *) |
| 301 | ANDROID_EMULATOR_PREBUILTS= |
| 302 | ;; |
| 303 | esac |
| 304 | if [ -n "$ANDROID_EMULATOR_PREBUILTS" -a -d "$ANDROID_EMULATOR_PREBUILTS" ]; then |
| 305 | ANDROID_GLOBAL_BUILD_PATHS+=:$ANDROID_EMULATOR_PREBUILTS |
| 306 | export ANDROID_EMULATOR_PREBUILTS |
| 307 | fi |
| 308 | |
| 309 | # Finally, set PATH |
Joe Onorato | 1cb9e15 | 2022-12-05 16:56:15 -0800 | [diff] [blame] | 310 | export PATH=$ANDROID_GLOBAL_BUILD_PATHS:$PATH |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 313 | function printconfig() |
| 314 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 315 | local T=$(gettop) |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 316 | if [ ! "$T" ]; then |
| 317 | echo "Couldn't locate the top of the tree. Try setting TOP." >&2 |
| 318 | return |
| 319 | fi |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 320 | _get_build_var_cached report_config |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 323 | function set_stuff_for_environment() |
| 324 | { |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 325 | set_lunch_paths |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 326 | set_sequence_number |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 329 | function set_sequence_number() |
| 330 | { |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 331 | export BUILD_ENV_SEQUENCE_NUMBER=13 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 332 | } |
| 333 | |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 334 | # Takes a command name, and check if it's in ENVSETUP_NO_COMPLETION or not. |
| 335 | function should_add_completion() { |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 336 | local cmd="$(basename $1| sed 's/_completion//' |sed 's/\.\(.*\)*sh$//')" |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 337 | case :"$ENVSETUP_NO_COMPLETION": in |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 338 | *:"$cmd":*) |
| 339 | return 1 |
| 340 | ;; |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 341 | esac |
| 342 | return 0 |
| 343 | } |
| 344 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 345 | function addcompletions() |
| 346 | { |
Ben Taitelbaum | 8c2c9cf | 2020-09-22 16:45:05 -0700 | [diff] [blame] | 347 | local f= |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 348 | |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 349 | # Keep us from trying to run in something that's neither bash nor zsh. |
| 350 | if [ -z "$BASH_VERSION" -a -z "$ZSH_VERSION" ]; then |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 351 | return |
| 352 | fi |
| 353 | |
| 354 | # Keep us from trying to run in bash that's too old. |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 355 | if [ -n "$BASH_VERSION" -a ${BASH_VERSINFO[0]} -lt 3 ]; then |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 356 | return |
| 357 | fi |
| 358 | |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 359 | local completion_files=( |
MÃ¥rten Kongstad | cb5c73f | 2022-05-04 14:08:12 +0000 | [diff] [blame] | 360 | packages/modules/adb/adb.bash |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 361 | system/core/fastboot/fastboot.bash |
Jim Tang | b3fda30 | 2018-12-22 10:24:55 +0800 | [diff] [blame] | 362 | tools/asuite/asuite.sh |
Chris Parsons | a297297 | 2022-08-31 15:04:38 -0400 | [diff] [blame] | 363 | prebuilts/bazel/common/bazel-complete.bash |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 364 | ) |
Makoto Onuki | da97106 | 2018-06-18 10:15:19 -0700 | [diff] [blame] | 365 | # Completion can be disabled selectively to allow users to use non-standard completion. |
| 366 | # e.g. |
| 367 | # ENVSETUP_NO_COMPLETION=adb # -> disable adb completion |
| 368 | # ENVSETUP_NO_COMPLETION=adb:bit # -> disable adb and bit completion |
Usta Shrestha | 1433fb3 | 2022-05-13 14:49:40 -0400 | [diff] [blame] | 369 | local T=$(gettop) |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 370 | for f in ${completion_files[*]}; do |
Usta Shrestha | 1433fb3 | 2022-05-13 14:49:40 -0400 | [diff] [blame] | 371 | f="$T/$f" |
MÃ¥rten Kongstad | cb5c73f | 2022-05-04 14:08:12 +0000 | [diff] [blame] | 372 | if [ ! -f "$f" ]; then |
| 373 | echo "Warning: completion file $f not found" |
| 374 | elif should_add_completion "$f"; then |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 375 | . $f |
Elliott Hughes | ce18dd4 | 2018-04-03 13:49:48 -0700 | [diff] [blame] | 376 | fi |
| 377 | done |
Joe Onorato | 002a6c7 | 2016-10-20 16:39:49 -0700 | [diff] [blame] | 378 | |
Anton Hansson | ece9c48 | 2019-02-04 18:15:39 +0000 | [diff] [blame] | 379 | if [ -z "$ZSH_VERSION" ]; then |
| 380 | # Doesn't work in zsh. |
| 381 | complete -o nospace -F _croot croot |
Chris Parsons | a297297 | 2022-08-31 15:04:38 -0400 | [diff] [blame] | 382 | # TODO(b/244559459): Support b autocompletion for zsh |
| 383 | complete -F _bazel__complete -o nospace b |
Anton Hansson | ece9c48 | 2019-02-04 18:15:39 +0000 | [diff] [blame] | 384 | fi |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 385 | complete -F _lunch lunch |
Joe Onorato | 590ae9f | 2024-05-24 15:38:58 -0700 | [diff] [blame] | 386 | complete -F _lunch_completion lunch2 |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 387 | |
Cole Faust | 24c36db | 2021-01-23 02:39:37 +0000 | [diff] [blame] | 388 | complete -F _complete_android_module_names pathmod |
dimitry | 73b8481 | 2018-12-11 18:06:00 +0100 | [diff] [blame] | 389 | complete -F _complete_android_module_names gomod |
Cole Faust | 24c36db | 2021-01-23 02:39:37 +0000 | [diff] [blame] | 390 | complete -F _complete_android_module_names outmod |
| 391 | complete -F _complete_android_module_names installmod |
dimitry | 73b8481 | 2018-12-11 18:06:00 +0100 | [diff] [blame] | 392 | complete -F _complete_android_module_names m |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 393 | } |
| 394 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 395 | function add_lunch_combo() |
| 396 | { |
Dan Willemsen | 5436c7e | 2019-02-11 21:31:47 -0800 | [diff] [blame] | 397 | if [ -n "$ZSH_VERSION" ]; then |
| 398 | echo -n "${funcfiletrace[1]}: " |
| 399 | else |
| 400 | echo -n "${BASH_SOURCE[1]}:${BASH_LINENO[0]}: " |
| 401 | fi |
| 402 | echo "add_lunch_combo is obsolete. Use COMMON_LUNCH_CHOICES in your AndroidProducts.mk instead." |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 403 | } |
| 404 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 405 | function print_lunch_menu() |
| 406 | { |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 407 | local uname=$(uname) |
Roland Levillain | 23c46cf | 2020-03-31 16:11:05 +0100 | [diff] [blame] | 408 | local choices |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 409 | choices=$(TARGET_BUILD_APPS= TARGET_PRODUCT= TARGET_RELEASE= TARGET_BUILD_VARIANT= _get_build_var_cached COMMON_LUNCH_CHOICES 2>/dev/null) |
Roland Levillain | 23c46cf | 2020-03-31 16:11:05 +0100 | [diff] [blame] | 410 | local ret=$? |
| 411 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 412 | echo |
| 413 | echo "You're building on" $uname |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 414 | echo |
Roland Levillain | 23c46cf | 2020-03-31 16:11:05 +0100 | [diff] [blame] | 415 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 416 | if [ $ret -ne 0 ] |
| 417 | then |
Roland Levillain | 23c46cf | 2020-03-31 16:11:05 +0100 | [diff] [blame] | 418 | echo "Warning: Cannot display lunch menu." |
| 419 | echo |
| 420 | echo "Note: You can invoke lunch with an explicit target:" |
| 421 | echo |
| 422 | echo " usage: lunch [target]" >&2 |
| 423 | echo |
| 424 | return |
| 425 | fi |
| 426 | |
Will Burr | 4040120 | 2022-02-07 12:12:01 +0000 | [diff] [blame] | 427 | echo "Lunch menu .. Here are the common combinations:" |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 428 | |
| 429 | local i=1 |
| 430 | local choice |
Dan Willemsen | 91763e9 | 2019-10-03 15:13:12 -0700 | [diff] [blame] | 431 | for choice in $(echo $choices) |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 432 | do |
| 433 | echo " $i. $choice" |
| 434 | i=$(($i+1)) |
| 435 | done |
| 436 | |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 437 | echo |
| 438 | } |
| 439 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 440 | function lunch() |
| 441 | { |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 442 | local answer |
| 443 | |
Steven Moreland | 92793dc | 2020-02-25 18:30:18 -0800 | [diff] [blame] | 444 | if [[ $# -gt 1 ]]; then |
| 445 | echo "usage: lunch [target]" >&2 |
| 446 | return 1 |
| 447 | fi |
| 448 | |
Will Burr | 4040120 | 2022-02-07 12:12:01 +0000 | [diff] [blame] | 449 | local used_lunch_menu=0 |
| 450 | |
Steven Moreland | 92793dc | 2020-02-25 18:30:18 -0800 | [diff] [blame] | 451 | if [ "$1" ]; then |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 452 | answer=$1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 453 | else |
| 454 | print_lunch_menu |
Greg Kaiser | bae4c57 | 2024-01-04 15:57:54 -0700 | [diff] [blame] | 455 | echo "Which would you like? [aosp_cf_x86_64_phone-trunk_staging-eng]" |
Greg Kaiser | 9a5a526 | 2023-11-02 16:54:27 +0000 | [diff] [blame] | 456 | echo -n "Pick from common choices above (e.g. 13) or specify your own (e.g. aosp_barbet-trunk_staging-eng): " |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 457 | read answer |
Will Burr | 4040120 | 2022-02-07 12:12:01 +0000 | [diff] [blame] | 458 | used_lunch_menu=1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 459 | fi |
| 460 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 461 | local selection= |
| 462 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 463 | if [ -z "$answer" ] |
| 464 | then |
Greg Kaiser | bae4c57 | 2024-01-04 15:57:54 -0700 | [diff] [blame] | 465 | selection=aosp_cf_x86_64_phone-trunk_staging-eng |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 466 | elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$") |
| 467 | then |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 468 | local choices=($(TARGET_BUILD_APPS= TARGET_PRODUCT= TARGET_RELEASE= TARGET_BUILD_VARIANT= _get_build_var_cached COMMON_LUNCH_CHOICES 2>/dev/null)) |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 469 | if [ $answer -le ${#choices[@]} ] |
| 470 | then |
Jim Tang | 0e3397b | 2018-10-03 18:25:50 +0800 | [diff] [blame] | 471 | # array in zsh starts from 1 instead of 0. |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 472 | if [ -n "$ZSH_VERSION" ] |
| 473 | then |
Jim Tang | 0e3397b | 2018-10-03 18:25:50 +0800 | [diff] [blame] | 474 | selection=${choices[$(($answer))]} |
| 475 | else |
| 476 | selection=${choices[$(($answer-1))]} |
| 477 | fi |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 478 | fi |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 479 | else |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 480 | selection=$answer |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 481 | fi |
| 482 | |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 483 | export TARGET_BUILD_APPS= |
| 484 | |
Greg Kaiser | 5e2d339 | 2023-10-27 14:15:48 -0600 | [diff] [blame] | 485 | # This must be <product>-<release>-<variant> |
| 486 | local product release variant |
| 487 | # Split string on the '-' character. |
| 488 | IFS="-" read -r product release variant <<< "$selection" |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 489 | |
Greg Kaiser | 5e2d339 | 2023-10-27 14:15:48 -0600 | [diff] [blame] | 490 | if [[ -z "$product" ]] || [[ -z "$release" ]] || [[ -z "$variant" ]] |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 491 | then |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 492 | echo |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 493 | echo "Invalid lunch combo: $selection" |
Greg Kaiser | 5e2d339 | 2023-10-27 14:15:48 -0600 | [diff] [blame] | 494 | echo "Valid combos must be of the form <product>-<release>-<variant>" |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 495 | return 1 |
| 496 | fi |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 497 | |
Joe Onorato | 590ae9f | 2024-05-24 15:38:58 -0700 | [diff] [blame] | 498 | _lunch_meat $product $release $variant |
| 499 | } |
| 500 | |
| 501 | function _lunch_meat() |
| 502 | { |
| 503 | local product=$1 |
| 504 | local release=$2 |
| 505 | local variant=$3 |
| 506 | |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 507 | TARGET_PRODUCT=$product \ |
Jeff Hamilton | a02c747 | 2023-05-08 03:13:29 +0000 | [diff] [blame] | 508 | TARGET_RELEASE=$release \ |
Joe Onorato | 590ae9f | 2024-05-24 15:38:58 -0700 | [diff] [blame] | 509 | TARGET_BUILD_VARIANT=$variant \ |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 510 | build_build_var_cache |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 511 | if [ $? -ne 0 ] |
| 512 | then |
Anton Hansson | 32fa7ee | 2021-06-14 17:09:58 +0100 | [diff] [blame] | 513 | if [[ "$product" =~ .*_(eng|user|userdebug) ]] |
| 514 | then |
| 515 | echo "Did you mean -${product/*_/}? (dash instead of underscore)" |
| 516 | fi |
Colin Cross | 8873713 | 2017-03-21 17:41:03 -0700 | [diff] [blame] | 517 | return 1 |
| 518 | fi |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 519 | export TARGET_PRODUCT=$(_get_build_var_cached TARGET_PRODUCT) |
| 520 | export TARGET_BUILD_VARIANT=$(_get_build_var_cached TARGET_BUILD_VARIANT) |
Greg Kaiser | 5e2d339 | 2023-10-27 14:15:48 -0600 | [diff] [blame] | 521 | export TARGET_RELEASE=$release |
| 522 | # Note this is the string "release", not the value of the variable. |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 523 | export TARGET_BUILD_TYPE=release |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 524 | |
Michael Bestas | 7e6522b | 2021-05-06 16:44:13 +0300 | [diff] [blame] | 525 | local no_kernel=$(_get_build_var_cached TARGET_NO_KERNEL) |
| 526 | if [[ "$no_kernel" == "true" ]]; then |
| 527 | unset INLINE_KERNEL_BUILDING |
| 528 | else |
| 529 | export INLINE_KERNEL_BUILDING=true |
| 530 | fi |
| 531 | |
Mark White | 2c80751 | 2023-10-25 17:27:07 +0000 | [diff] [blame] | 532 | [[ -n "${ANDROID_QUIET_BUILD:-}" ]] || echo |
| 533 | |
Luca Stefani | 05ce70d | 2017-08-17 21:21:23 +0200 | [diff] [blame] | 534 | fixup_common_out_dir |
| 535 | |
Mark White | 2c80751 | 2023-10-25 17:27:07 +0000 | [diff] [blame] | 536 | set_stuff_for_environment |
| 537 | [[ -n "${ANDROID_QUIET_BUILD:-}" ]] || printconfig |
| 538 | |
Chirayu Desai | 635935f | 2024-03-08 02:10:56 +0530 | [diff] [blame] | 539 | if [[ -z "${ANDROID_QUIET_BUILD}" && -z "${LINEAGE_BUILD}" ]]; then |
Joe Onorato | 590ae9f | 2024-05-24 15:38:58 -0700 | [diff] [blame] | 540 | local spam_for_lunch=$(gettop)/build/make/tools/envsetup/spam_for_lunch |
| 541 | if [[ -x $spam_for_lunch ]]; then |
| 542 | $spam_for_lunch |
| 543 | fi |
Will Burr | 4040120 | 2022-02-07 12:12:01 +0000 | [diff] [blame] | 544 | fi |
| 545 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 546 | destroy_build_var_cache |
Kousik Kumar | 41dacd1 | 2021-05-11 18:38:38 -0400 | [diff] [blame] | 547 | |
| 548 | if [[ -n "${CHECK_MU_CONFIG:-}" ]]; then |
| 549 | check_mu_config |
| 550 | fi |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 551 | } |
| 552 | |
Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 553 | unset COMMON_LUNCH_CHOICES_CACHE |
Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 554 | # Tab completion for lunch. |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 555 | function _lunch() |
| 556 | { |
Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 557 | local cur prev opts |
| 558 | COMPREPLY=() |
| 559 | cur="${COMP_WORDS[COMP_CWORD]}" |
| 560 | prev="${COMP_WORDS[COMP_CWORD-1]}" |
| 561 | |
Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 562 | if [ -z "$COMMON_LUNCH_CHOICES_CACHE" ]; then |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 563 | COMMON_LUNCH_CHOICES_CACHE=$(TARGET_BUILD_APPS= _get_build_var_cached COMMON_LUNCH_CHOICES) |
Dan Willemsen | af2e1f8 | 2018-04-04 15:41:41 -0700 | [diff] [blame] | 564 | fi |
| 565 | |
| 566 | COMPREPLY=( $(compgen -W "${COMMON_LUNCH_CHOICES_CACHE}" -- ${cur}) ) |
Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 567 | return 0 |
| 568 | } |
Jeff Davidson | 513d7a4 | 2010-08-02 10:00:44 -0700 | [diff] [blame] | 569 | |
Joe Onorato | 590ae9f | 2024-05-24 15:38:58 -0700 | [diff] [blame] | 570 | function _lunch_usage() |
| 571 | { |
| 572 | ( |
| 573 | echo "The lunch command selects the configuration to use for subsequent" |
| 574 | echo "Android builds." |
| 575 | echo |
| 576 | echo "Usage: lunch TARGET_PRODUCT [TARGET_RELEASE [TARGET_BUILD_VARIANT]]" |
| 577 | echo |
| 578 | echo " Choose the product, release and variant to use. If not" |
| 579 | echo " supplied, TARGET_RELEASE will be 'trunk_staging' and" |
| 580 | echo " TARGET_BUILD_VARIANT will be 'eng'" |
| 581 | echo |
| 582 | echo |
| 583 | echo "Usage: lunch TARGET_PRODUCT-TARGET_RELEASE-TARGET_BUILD_VARIANT" |
| 584 | echo |
| 585 | echo " Chose the product, release and variant to use. This" |
| 586 | echo " legacy format is maintained for compatibility." |
| 587 | echo |
| 588 | echo |
| 589 | echo "Note that the previous interactive menu and list of hard-coded" |
| 590 | echo "list of curated targets has been removed. If you would like the" |
| 591 | echo "list of products, release configs for a particular product, or" |
| 592 | echo "variants, run list_products, list_release_configs, list_variants" |
| 593 | echo "respectively." |
| 594 | echo |
| 595 | ) 1>&2 |
| 596 | } |
| 597 | |
| 598 | function lunch2() |
| 599 | { |
| 600 | if [[ $# -eq 1 && $1 = "--help" ]]; then |
| 601 | _lunch_usage |
| 602 | return 0 |
| 603 | fi |
| 604 | if [[ $# -eq 0 ]]; then |
| 605 | echo "No target specified. See lunch --help" 1>&2 |
| 606 | return 1 |
| 607 | fi |
| 608 | if [[ $# -gt 3 ]]; then |
| 609 | echo "Too many parameters given. See lunch --help" 1>&2 |
| 610 | return 1 |
| 611 | fi |
| 612 | |
| 613 | local product release variant |
| 614 | |
| 615 | # Handle the legacy format |
| 616 | local legacy=$(echo $1 | grep "-") |
| 617 | if [[ $# -eq 1 && -n $legacy ]]; then |
| 618 | IFS="-" read -r product release variant <<< "$1" |
| 619 | if [[ -z "$product" ]] || [[ -z "$release" ]] || [[ -z "$variant" ]]; then |
| 620 | echo "Invalid lunch combo: $1" 1>&2 |
| 621 | echo "Valid combos must be of the form <product>-<release>-<variant> when using" 1>&2 |
| 622 | echo "the legacy format. Run 'lunch --help' for usage." 1>&2 |
| 623 | return 1 |
| 624 | fi |
| 625 | fi |
| 626 | |
| 627 | # Handle the new format. |
| 628 | if [[ -z $legacy ]]; then |
| 629 | product=$1 |
| 630 | release=$2 |
| 631 | if [[ -z $release ]]; then |
| 632 | release=trunk_staging |
| 633 | fi |
| 634 | variant=$3 |
| 635 | if [[ -z $variant ]]; then |
| 636 | variant=eng |
| 637 | fi |
| 638 | fi |
| 639 | |
| 640 | # Validate the selection and set all the environment stuff |
| 641 | _lunch_meat $product $release $variant |
| 642 | } |
| 643 | |
| 644 | unset ANDROID_LUNCH_COMPLETION_PRODUCT_CACHE |
| 645 | unset ANDROID_LUNCH_COMPLETION_CHOSEN_PRODUCT |
| 646 | unset ANDROID_LUNCH_COMPLETION_RELEASE_CACHE |
| 647 | # Tab completion for lunch. |
| 648 | function _lunch_completion() |
| 649 | { |
| 650 | # Available products |
| 651 | if [[ $COMP_CWORD -eq 1 ]] ; then |
| 652 | if [[ -z $ANDROID_LUNCH_COMPLETION_PRODUCT_CACHE ]]; then |
| 653 | ANDROID_LUNCH_COMPLETION_PRODUCT_CACHE=$(list_products) |
| 654 | fi |
| 655 | COMPREPLY=( $(compgen -W "${ANDROID_LUNCH_COMPLETION_PRODUCT_CACHE}" -- "${COMP_WORDS[COMP_CWORD]}") ) |
| 656 | fi |
| 657 | |
| 658 | # Available release configs |
| 659 | if [[ $COMP_CWORD -eq 2 ]] ; then |
| 660 | if [[ -z $ANDROID_LUNCH_COMPLETION_RELEASE_CACHE || $ANDROID_LUNCH_COMPLETION_CHOSEN_PRODUCT != ${COMP_WORDS[1]} ]] ; then |
| 661 | ANDROID_LUNCH_COMPLETION_RELEASE_CACHE=$(list_releases ${COMP_WORDS[1]}) |
| 662 | ANDROID_LUNCH_COMPLETION_CHOSEN_PRODUCT=${COMP_WORDS[1]} |
| 663 | fi |
| 664 | COMPREPLY=( $(compgen -W "${ANDROID_LUNCH_COMPLETION_RELEASE_CACHE}" -- "${COMP_WORDS[COMP_CWORD]}") ) |
| 665 | fi |
| 666 | |
| 667 | # Available variants |
| 668 | if [[ $COMP_CWORD -eq 3 ]] ; then |
| 669 | COMPREPLY=(user userdebug eng) |
| 670 | fi |
| 671 | |
| 672 | return 0 |
| 673 | } |
| 674 | |
| 675 | |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 676 | # Configures the build to build unbundled apps. |
Doug Zongker | 0d8179e | 2014-04-16 11:34:34 -0700 | [diff] [blame] | 677 | # Run tapas with one or more app names (from LOCAL_PACKAGE_NAME) |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 678 | function tapas() |
| 679 | { |
Jeff Gaston | 9fb05d8 | 2017-08-21 18:27:00 -0700 | [diff] [blame] | 680 | local showHelp="$(echo $* | xargs -n 1 echo | \grep -E '^(help)$' | xargs)" |
Elliott Hughes | f71c05a | 2020-03-06 16:46:59 -0800 | [diff] [blame] | 681 | local arch="$(echo $* | xargs -n 1 echo | \grep -E '^(arm|x86|arm64|x86_64)$' | xargs)" |
Greg Kaiser | 83ed159 | 2023-10-26 18:37:40 +0000 | [diff] [blame] | 682 | # TODO(b/307975293): Expand tapas to take release arguments (and update hmm() usage). |
| 683 | local release="trunk_staging" |
Doug Zongker | 0d8179e | 2014-04-16 11:34:34 -0700 | [diff] [blame] | 684 | local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)" |
Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 685 | local density="$(echo $* | xargs -n 1 echo | \grep -E '^(ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi)$' | xargs)" |
Colin Cross | 7f49a67 | 2022-01-27 18:15:53 -0800 | [diff] [blame] | 686 | local keys="$(echo $* | xargs -n 1 echo | \grep -E '^(devkeys)$' | xargs)" |
| 687 | local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|arm|x86|arm64|x86_64|ldpi|mdpi|tvdpi|hdpi|xhdpi|xxhdpi|xxxhdpi|alldpi|devkeys)$' | xargs)" |
| 688 | |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 689 | |
Jeff Gaston | 9fb05d8 | 2017-08-21 18:27:00 -0700 | [diff] [blame] | 690 | if [ "$showHelp" != "" ]; then |
| 691 | $(gettop)/build/make/tapasHelp.sh |
| 692 | return |
| 693 | fi |
| 694 | |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 695 | if [ $(echo $arch | wc -w) -gt 1 ]; then |
| 696 | echo "tapas: Error: Multiple build archs supplied: $arch" |
| 697 | return |
| 698 | fi |
Greg Kaiser | 83ed159 | 2023-10-26 18:37:40 +0000 | [diff] [blame] | 699 | if [ $(echo $release | wc -w) -gt 1 ]; then |
| 700 | echo "tapas: Error: Multiple build releases supplied: $release" |
| 701 | return |
| 702 | fi |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 703 | if [ $(echo $variant | wc -w) -gt 1 ]; then |
| 704 | echo "tapas: Error: Multiple build variants supplied: $variant" |
| 705 | return |
| 706 | fi |
Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 707 | if [ $(echo $density | wc -w) -gt 1 ]; then |
| 708 | echo "tapas: Error: Multiple densities supplied: $density" |
| 709 | return |
| 710 | fi |
Colin Cross | 7f49a67 | 2022-01-27 18:15:53 -0800 | [diff] [blame] | 711 | if [ $(echo $keys | wc -w) -gt 1 ]; then |
| 712 | echo "tapas: Error: Multiple keys supplied: $keys" |
| 713 | return |
| 714 | fi |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 715 | |
Ying Wang | 0a76df5 | 2015-06-08 11:57:26 -0700 | [diff] [blame] | 716 | local product=aosp_arm |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 717 | case $arch in |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 718 | x86) product=aosp_x86;; |
| 719 | arm64) product=aosp_arm64;; |
| 720 | x86_64) product=aosp_x86_64;; |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 721 | esac |
Colin Cross | 7f49a67 | 2022-01-27 18:15:53 -0800 | [diff] [blame] | 722 | if [ -n "$keys" ]; then |
| 723 | product=${product/aosp_/aosp_${keys}_} |
| 724 | fi; |
| 725 | |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 726 | if [ -z "$variant" ]; then |
| 727 | variant=eng |
| 728 | fi |
Ying Wang | c048c9b | 2010-06-24 15:08:33 -0700 | [diff] [blame] | 729 | if [ -z "$apps" ]; then |
| 730 | apps=all |
| 731 | fi |
Justin Morey | 29d225c | 2014-11-04 13:35:51 -0600 | [diff] [blame] | 732 | if [ -z "$density" ]; then |
| 733 | density=alldpi |
| 734 | fi |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 735 | |
Ying Wang | 67f0292 | 2012-08-22 10:25:20 -0700 | [diff] [blame] | 736 | export TARGET_PRODUCT=$product |
Greg Kaiser | 83ed159 | 2023-10-26 18:37:40 +0000 | [diff] [blame] | 737 | export TARGET_RELEASE=$release |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 738 | export TARGET_BUILD_VARIANT=$variant |
Jeff Hamilton | 5069bd6 | 2014-09-04 21:28:00 -0700 | [diff] [blame] | 739 | export TARGET_BUILD_DENSITY=$density |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 740 | export TARGET_BUILD_TYPE=release |
| 741 | export TARGET_BUILD_APPS=$apps |
| 742 | |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 743 | build_build_var_cache |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 744 | set_stuff_for_environment |
| 745 | printconfig |
Ying Wang | 08800fd | 2016-03-03 20:57:21 -0800 | [diff] [blame] | 746 | destroy_build_var_cache |
Joe Onorato | da12daf | 2010-06-09 18:18:31 -0700 | [diff] [blame] | 747 | } |
| 748 | |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 749 | # Configures the build to build unbundled Android modules (APEXes). |
| 750 | # Run banchan with one or more module names (from apex{} modules). |
| 751 | function banchan() |
| 752 | { |
| 753 | local showHelp="$(echo $* | xargs -n 1 echo | \grep -E '^(help)$' | xargs)" |
Ulya Trafimovich | 08c381b | 2023-06-12 15:33:09 +0100 | [diff] [blame] | 754 | local product="$(echo $* | xargs -n 1 echo | \grep -E '^(.*_)?(arm|x86|arm64|riscv64|x86_64|arm64only|x86_64only)$' | xargs)" |
Greg Kaiser | d35095e | 2023-10-27 16:04:30 -0600 | [diff] [blame] | 755 | # TODO: Expand banchan to take release arguments (and update hmm() usage). |
| 756 | local release="trunk_staging" |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 757 | local variant="$(echo $* | xargs -n 1 echo | \grep -E '^(user|userdebug|eng)$' | xargs)" |
Ulya Trafimovich | 08c381b | 2023-06-12 15:33:09 +0100 | [diff] [blame] | 758 | local apps="$(echo $* | xargs -n 1 echo | \grep -E -v '^(user|userdebug|eng|(.*_)?(arm|x86|arm64|riscv64|x86_64))$' | xargs)" |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 759 | |
| 760 | if [ "$showHelp" != "" ]; then |
| 761 | $(gettop)/build/make/banchanHelp.sh |
| 762 | return |
| 763 | fi |
| 764 | |
Martin Stjernholm | 2b8d923 | 2021-04-16 20:45:03 +0100 | [diff] [blame] | 765 | if [ -z "$product" ]; then |
Anton Hansson | 0328e32 | 2022-05-24 15:47:40 +0000 | [diff] [blame] | 766 | product=arm64 |
Martin Stjernholm | 2b8d923 | 2021-04-16 20:45:03 +0100 | [diff] [blame] | 767 | elif [ $(echo $product | wc -w) -gt 1 ]; then |
| 768 | echo "banchan: Error: Multiple build archs or products supplied: $products" |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 769 | return |
| 770 | fi |
Greg Kaiser | d35095e | 2023-10-27 16:04:30 -0600 | [diff] [blame] | 771 | if [ $(echo $release | wc -w) -gt 1 ]; then |
| 772 | echo "banchan: Error: Multiple build releases supplied: $release" |
| 773 | return |
| 774 | fi |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 775 | if [ $(echo $variant | wc -w) -gt 1 ]; then |
| 776 | echo "banchan: Error: Multiple build variants supplied: $variant" |
| 777 | return |
| 778 | fi |
| 779 | if [ -z "$apps" ]; then |
| 780 | echo "banchan: Error: No modules supplied" |
| 781 | return |
| 782 | fi |
| 783 | |
Martin Stjernholm | 2b8d923 | 2021-04-16 20:45:03 +0100 | [diff] [blame] | 784 | case $product in |
| 785 | arm) product=module_arm;; |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 786 | x86) product=module_x86;; |
| 787 | arm64) product=module_arm64;; |
Ulya Trafimovich | 08c381b | 2023-06-12 15:33:09 +0100 | [diff] [blame] | 788 | riscv64) product=module_riscv64;; |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 789 | x86_64) product=module_x86_64;; |
Anton Hansson | 90ac61c | 2022-09-06 14:36:00 +0000 | [diff] [blame] | 790 | arm64only) product=module_arm64only;; |
| 791 | x86_64only) product=module_x86_64only;; |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 792 | esac |
| 793 | if [ -z "$variant" ]; then |
| 794 | variant=eng |
| 795 | fi |
| 796 | |
| 797 | export TARGET_PRODUCT=$product |
Greg Kaiser | d35095e | 2023-10-27 16:04:30 -0600 | [diff] [blame] | 798 | export TARGET_RELEASE=$release |
Martin Stjernholm | f692c75 | 2021-04-12 00:01:10 +0100 | [diff] [blame] | 799 | export TARGET_BUILD_VARIANT=$variant |
| 800 | export TARGET_BUILD_DENSITY=alldpi |
| 801 | export TARGET_BUILD_TYPE=release |
| 802 | |
| 803 | # This setup currently uses TARGET_BUILD_APPS just like tapas, but the use |
| 804 | # case is different and it may diverge in the future. |
| 805 | export TARGET_BUILD_APPS=$apps |
| 806 | |
| 807 | build_build_var_cache |
| 808 | set_stuff_for_environment |
| 809 | printconfig |
| 810 | destroy_build_var_cache |
| 811 | } |
| 812 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 813 | function croot() |
| 814 | { |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 815 | local T=$(gettop) |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 816 | if [ "$T" ]; then |
Marie Janssen | 32ec50a | 2016-04-21 16:53:39 -0700 | [diff] [blame] | 817 | if [ "$1" ]; then |
| 818 | \cd $(gettop)/$1 |
| 819 | else |
| 820 | \cd $(gettop) |
| 821 | fi |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 822 | else |
| 823 | echo "Couldn't locate the top of the tree. Try setting TOP." |
| 824 | fi |
| 825 | } |
| 826 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 827 | function _croot() |
| 828 | { |
Anton Hansson | ece9c48 | 2019-02-04 18:15:39 +0000 | [diff] [blame] | 829 | local T=$(gettop) |
| 830 | if [ "$T" ]; then |
| 831 | local cur="${COMP_WORDS[COMP_CWORD]}" |
| 832 | k=0 |
| 833 | for c in $(compgen -d ${T}/${cur}); do |
| 834 | COMPREPLY[k++]=${c#${T}/}/ |
| 835 | done |
| 836 | fi |
| 837 | } |
| 838 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 839 | function cproj() |
| 840 | { |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 841 | local TOPFILE=build/make/core/envsetup.mk |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 842 | local HERE=$PWD |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 843 | local T= |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 844 | while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do |
| 845 | T=$PWD |
| 846 | if [ -f "$T/Android.mk" ]; then |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 847 | \cd $T |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 848 | return |
| 849 | fi |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 850 | \cd .. |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 851 | done |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 852 | \cd $HERE |
Joe Onorato | 2a5d4d8 | 2009-07-30 10:23:21 -0700 | [diff] [blame] | 853 | echo "can't find Android.mk" |
| 854 | } |
| 855 | |
Elliott Hughes | 86e9917 | 2024-03-21 16:55:08 +0000 | [diff] [blame] | 856 | # Ensure that we're always using the adb in the tree. This works around the fact |
| 857 | # that bash caches $PATH lookups, so if you use adb before lunching/building the |
| 858 | # one in your tree, you'll continue to get /usr/bin/adb or whatever even after |
| 859 | # you have the one from your current tree on your path. Historically this would |
| 860 | # cause confusion because glinux had adb in /usr/bin/ by default, though that |
| 861 | # doesn't appear to be the case on my rodete hosts; it is however still the case |
| 862 | # that my Mac has /usr/local/bin/adb installed by default and on the default |
| 863 | # path. |
Shaju Mathew | 2143900 | 2023-07-10 00:53:22 +0000 | [diff] [blame] | 864 | function adb() { |
Elliott Hughes | 57c47b7 | 2024-03-22 15:46:59 +0000 | [diff] [blame] | 865 | # We need `command which` because zsh has a built-in `which` that's more |
| 866 | # like `type`. |
| 867 | local ADB=$(command which adb) |
Elliott Hughes | 7e7ff75 | 2024-03-20 17:23:40 -0700 | [diff] [blame] | 868 | if [ -z "$ADB" ]; then |
| 869 | echo "Command adb not found; try lunch (and building) first?" |
| 870 | return 1 |
| 871 | fi |
Zhuoyao Zhang | 60dd9dd | 2024-04-19 00:07:59 +0000 | [diff] [blame] | 872 | run_tool_with_logging "ADB" $ADB "${@}" |
Shaju Mathew | 2143900 | 2023-07-10 00:53:22 +0000 | [diff] [blame] | 873 | } |
| 874 | |
Zhuoyao Zhang | f02aadf | 2024-06-10 18:28:25 +0000 | [diff] [blame] | 875 | function fastboot() { |
| 876 | local FASTBOOT=$(command which fastboot) |
| 877 | if [ -z "$FASTBOOT" ]; then |
| 878 | echo "Command fastboot not found; try lunch (and building) first?" |
| 879 | return 1 |
| 880 | fi |
| 881 | # Support tool event logging for fastboot command. |
| 882 | run_tool_with_logging "FASTBOOT" $FASTBOOT "${@}" |
| 883 | } |
| 884 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 885 | # communicate with a running device or emulator, set up necessary state, |
| 886 | # and run the hat command. |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 887 | function runhat() |
| 888 | { |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 889 | # process standard adb options |
| 890 | local adbTarget="" |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 891 | if [ "$1" = "-d" -o "$1" = "-e" ]; then |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 892 | adbTarget=$1 |
| 893 | shift 1 |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 894 | elif [ "$1" = "-s" ]; then |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 895 | adbTarget="$1 $2" |
| 896 | shift 2 |
| 897 | fi |
| 898 | local adbOptions=${adbTarget} |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 899 | #echo adbOptions = ${adbOptions} |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 900 | |
| 901 | # runhat options |
| 902 | local targetPid=$1 |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 903 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 904 | if [ "$targetPid" = "" ]; then |
Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 905 | echo "Usage: runhat [ -d | -e | -s serial ] target-pid" |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 906 | return |
| 907 | fi |
| 908 | |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 909 | # confirm hat is available |
| 910 | if [ -z $(which hat) ]; then |
| 911 | echo "hat is not available in this configuration." |
| 912 | return |
| 913 | fi |
| 914 | |
Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 915 | # issue "am" command to cause the hprof dump |
Nick Kralevich | 9948b1e | 2014-07-18 15:45:38 -0700 | [diff] [blame] | 916 | local devFile=/data/local/tmp/hprof-$targetPid |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 917 | echo "Poking $targetPid and waiting for data..." |
Dianne Hackborn | 6b9549f | 2012-09-26 15:00:59 -0700 | [diff] [blame] | 918 | echo "Storing data at $devFile" |
Andy McFadden | b628985 | 2010-07-12 08:00:19 -0700 | [diff] [blame] | 919 | adb ${adbOptions} shell am dumpheap $targetPid $devFile |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 920 | echo "Press enter when logcat shows \"hprof: heap dump completed\"" |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 921 | echo -n "> " |
| 922 | read |
| 923 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 924 | local localFile=/tmp/$$-hprof |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 925 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 926 | echo "Retrieving file $devFile..." |
| 927 | adb ${adbOptions} pull $devFile $localFile |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 928 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 929 | adb ${adbOptions} shell rm $devFile |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 930 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 931 | echo "Running hat on $localFile" |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 932 | echo "View the output by pointing your browser at http://localhost:7000/" |
| 933 | echo "" |
Dianne Hackborn | 6e4e1bb | 2011-11-10 15:19:51 -0800 | [diff] [blame] | 934 | hat -JXmx512m $localFile |
The Android Open Source Project | b6c1cf6 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 935 | } |
| 936 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 937 | function godir () { |
| 938 | if [[ -z "$1" ]]; then |
| 939 | echo "Usage: godir <regex>" |
| 940 | return |
| 941 | fi |
Christopher Ferris | 55257d2 | 2017-03-23 11:08:58 -0700 | [diff] [blame] | 942 | local T=$(gettop) |
| 943 | local FILELIST |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 944 | if [ ! "$OUT_DIR" = "" ]; then |
Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 945 | mkdir -p $OUT_DIR |
| 946 | FILELIST=$OUT_DIR/filelist |
| 947 | else |
| 948 | FILELIST=$T/filelist |
| 949 | fi |
| 950 | if [[ ! -f $FILELIST ]]; then |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 951 | echo -n "Creating index..." |
Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 952 | (\cd $T; find . -wholename ./out -prune -o -wholename ./.repo -prune -o -type f > $FILELIST) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 953 | echo " Done" |
| 954 | echo "" |
| 955 | fi |
| 956 | local lines |
Brian Carlstrom | f225742 | 2015-09-30 20:28:54 -0700 | [diff] [blame] | 957 | lines=($(\grep "$1" $FILELIST | sed -e 's/\/[^/]*$//' | sort | uniq)) |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 958 | if [[ ${#lines[@]} = 0 ]]; then |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 959 | echo "Not found" |
| 960 | return |
| 961 | fi |
| 962 | local pathname |
| 963 | local choice |
| 964 | if [[ ${#lines[@]} > 1 ]]; then |
| 965 | while [[ -z "$pathname" ]]; do |
| 966 | local index=1 |
| 967 | local line |
| 968 | for line in ${lines[@]}; do |
| 969 | printf "%6s %s\n" "[$index]" $line |
Doug Zongker | 2903498 | 2011-04-22 08:16:56 -0700 | [diff] [blame] | 970 | index=$(($index + 1)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 971 | done |
| 972 | echo |
| 973 | echo -n "Select one: " |
| 974 | unset choice |
| 975 | read choice |
| 976 | if [[ $choice -gt ${#lines[@]} || $choice -lt 1 ]]; then |
| 977 | echo "Invalid choice" |
| 978 | continue |
| 979 | fi |
Guillaume Chelfi | ce000fd | 2019-10-03 12:02:46 +0200 | [diff] [blame] | 980 | pathname=${lines[@]:$(($choice-1)):1} |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 981 | done |
| 982 | else |
Guillaume Chelfi | ce000fd | 2019-10-03 12:02:46 +0200 | [diff] [blame] | 983 | pathname=${lines[@]:0:1} |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 984 | fi |
Ying Wang | 9cd1764 | 2012-12-13 10:52:07 -0800 | [diff] [blame] | 985 | \cd $T/$pathname |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 986 | } |
| 987 | |
Rett Berg | 78d1c93 | 2019-01-24 14:34:23 -0800 | [diff] [blame] | 988 | # Go to a specific module in the android tree, as cached in module-info.json. If any build change |
| 989 | # is made, and it should be reflected in the output, you should run 'refreshmod' first. |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 990 | # Note: This function is in envsetup because changing the directory needs to happen in the current |
| 991 | # shell. All other functions that use module-info.json should be in build/soong/bin. |
Rett Berg | 78d1c93 | 2019-01-24 14:34:23 -0800 | [diff] [blame] | 992 | function gomod() { |
| 993 | if [[ $# -ne 1 ]]; then |
| 994 | echo "usage: gomod <module>" >&2 |
| 995 | return 1 |
| 996 | fi |
| 997 | |
| 998 | local path="$(pathmod $@)" |
| 999 | if [ -z "$path" ]; then |
| 1000 | return 1 |
| 1001 | fi |
| 1002 | cd $path |
| 1003 | } |
| 1004 | |
dimitry | 73b8481 | 2018-12-11 18:06:00 +0100 | [diff] [blame] | 1005 | function _complete_android_module_names() { |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1006 | local word=${COMP_WORDS[COMP_CWORD]} |
Cole Faust | 5d825b7 | 2022-10-26 18:16:44 -0700 | [diff] [blame] | 1007 | COMPREPLY=( $(allmod | grep -E "^$word") ) |
Steven Moreland | 62054a4 | 2018-12-06 10:11:40 -0800 | [diff] [blame] | 1008 | } |
| 1009 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 1010 | function get_make_command() |
| 1011 | { |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1012 | # If we're in the top of an Android tree, use soong_ui.bash instead of make |
| 1013 | if [ -f build/soong/soong_ui.bash ]; then |
Dan Willemsen | e984224 | 2017-07-28 13:00:13 -0700 | [diff] [blame] | 1014 | # Always use the real make if -C is passed in |
| 1015 | for arg in "$@"; do |
| 1016 | if [[ $arg == -C* ]]; then |
| 1017 | echo command make |
| 1018 | return |
| 1019 | fi |
| 1020 | done |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1021 | echo build/soong/soong_ui.bash --make-mode |
| 1022 | else |
| 1023 | echo command make |
| 1024 | fi |
Ying Wang | ed21d4c | 2014-08-24 22:14:19 -0700 | [diff] [blame] | 1025 | } |
| 1026 | |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 1027 | function make() |
| 1028 | { |
Dan Willemsen | e984224 | 2017-07-28 13:00:13 -0700 | [diff] [blame] | 1029 | _wrap_build $(get_make_command "$@") "$@" |
Dan Willemsen | d41ec5a | 2017-07-12 16:14:50 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1032 | # Zsh needs bashcompinit called to support bash-style completion. |
Patrik Fimml | df248e6 | 2018-10-15 18:15:12 +0200 | [diff] [blame] | 1033 | function enable_zsh_completion() { |
| 1034 | # Don't override user's options if bash-style completion is already enabled. |
| 1035 | if ! declare -f complete >/dev/null; then |
| 1036 | autoload -U compinit && compinit |
| 1037 | autoload -U bashcompinit && bashcompinit |
| 1038 | fi |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1039 | } |
| 1040 | |
| 1041 | function validate_current_shell() { |
| 1042 | local current_sh="$(ps -o command -p $$)" |
| 1043 | case "$current_sh" in |
Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1044 | *bash*) |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1045 | function check_type() { type -t "$1"; } |
Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1046 | ;; |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1047 | *zsh*) |
| 1048 | function check_type() { type "$1"; } |
Matt Alexander | d9c5656 | 2020-05-21 10:49:17 +0000 | [diff] [blame] | 1049 | enable_zsh_completion ;; |
Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1050 | *) |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1051 | echo -e "WARNING: Only bash and zsh are supported.\nUse of other shell would lead to erroneous results." |
Raphael Moll | 70a86b0 | 2011-06-20 16:03:14 -0700 | [diff] [blame] | 1052 | ;; |
| 1053 | esac |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1054 | } |
The Android Open Source Project | dcc08f0 | 2008-12-17 18:03:49 -0800 | [diff] [blame] | 1055 | |
| 1056 | # Execute the contents of any vendorsetup.sh files we can find. |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1057 | # Unless we find an allowed-vendorsetup_sh-files file, in which case we'll only |
| 1058 | # load those. |
| 1059 | # |
| 1060 | # This allows loading only approved vendorsetup.sh files |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1061 | function source_vendorsetup() { |
Jim Tang | c4dba1d | 2019-07-25 16:54:27 +0800 | [diff] [blame] | 1062 | unset VENDOR_PYTHONPATH |
Patrice Arruda | aa4b824 | 2020-10-12 21:29:14 +0000 | [diff] [blame] | 1063 | local T="$(gettop)" |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1064 | allowed= |
Patrice Arruda | aa4b824 | 2020-10-12 21:29:14 +0000 | [diff] [blame] | 1065 | for f in $(cd "$T" && find -L device vendor product -maxdepth 4 -name 'allowed-vendorsetup_sh-files' 2>/dev/null | sort); do |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1066 | if [ -n "$allowed" ]; then |
| 1067 | echo "More than one 'allowed_vendorsetup_sh-files' file found, not including any vendorsetup.sh files:" |
| 1068 | echo " $allowed" |
| 1069 | echo " $f" |
| 1070 | return |
| 1071 | fi |
Patrice Arruda | aa4b824 | 2020-10-12 21:29:14 +0000 | [diff] [blame] | 1072 | allowed="$T/$f" |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1073 | done |
| 1074 | |
| 1075 | allowed_files= |
| 1076 | [ -n "$allowed" ] && allowed_files=$(cat "$allowed") |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1077 | for dir in device vendor product; do |
Patrice Arruda | aa4b824 | 2020-10-12 21:29:14 +0000 | [diff] [blame] | 1078 | for f in $(cd "$T" && test -d $dir && \ |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1079 | find -L $dir -maxdepth 4 -name 'vendorsetup.sh' 2>/dev/null | sort); do |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1080 | |
| 1081 | if [[ -z "$allowed" || "$allowed_files" =~ $f ]]; then |
Patrice Arruda | aa4b824 | 2020-10-12 21:29:14 +0000 | [diff] [blame] | 1082 | echo "including $f"; . "$T/$f" |
Dan Willemsen | d855a72 | 2019-02-12 15:52:36 -0800 | [diff] [blame] | 1083 | else |
| 1084 | echo "ignoring $f, not in $allowed" |
| 1085 | fi |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1086 | done |
| 1087 | done |
Kousik Kumar | ec5416c | 2023-09-14 17:11:45 +0000 | [diff] [blame] | 1088 | |
| 1089 | if [[ "${PWD}" == /google/cog/* ]]; then |
| 1090 | f="build/make/cogsetup.sh" |
| 1091 | echo "including $f"; . "$T/$f" |
| 1092 | fi |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1093 | } |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 1094 | |
Dan Albert | bab814f | 2020-08-26 15:34:53 -0700 | [diff] [blame] | 1095 | function showcommands() { |
| 1096 | local T=$(gettop) |
| 1097 | if [[ -z "$TARGET_PRODUCT" ]]; then |
| 1098 | >&2 echo "TARGET_PRODUCT not set. Run lunch." |
| 1099 | return |
| 1100 | fi |
| 1101 | case $(uname -s) in |
| 1102 | Darwin) |
| 1103 | PREBUILT_NAME=darwin-x86 |
| 1104 | ;; |
| 1105 | Linux) |
| 1106 | PREBUILT_NAME=linux-x86 |
| 1107 | ;; |
| 1108 | *) |
| 1109 | >&2 echo Unknown host $(uname -s) |
| 1110 | return |
| 1111 | ;; |
| 1112 | esac |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 1113 | OUT_DIR="$(_get_abs_build_var_cached OUT_DIR)" |
Dan Albert | bab814f | 2020-08-26 15:34:53 -0700 | [diff] [blame] | 1114 | if [[ "$1" == "--regenerate" ]]; then |
| 1115 | shift 1 |
| 1116 | NINJA_ARGS="-t commands $@" m |
| 1117 | else |
| 1118 | (cd $T && prebuilts/build-tools/$PREBUILT_NAME/bin/ninja \ |
| 1119 | -f $OUT_DIR/combined-${TARGET_PRODUCT}.ninja \ |
| 1120 | -t commands "$@") |
| 1121 | fi |
| 1122 | } |
| 1123 | |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1124 | # These functions used to be here but are now standalone scripts |
| 1125 | # in build/soong/bin. Unset these for the time being so the real |
| 1126 | # script is picked up. |
Joe Onorato | 2312475 | 2024-05-14 15:06:48 -0700 | [diff] [blame] | 1127 | # TODO: Remove this some time after a suitable delay (maybe 2025?) |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1128 | unset allmod |
Joe Onorato | 2312475 | 2024-05-14 15:06:48 -0700 | [diff] [blame] | 1129 | unset aninja |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1130 | unset cgrep |
Joe Onorato | 3acb308 | 2024-05-24 14:14:46 -0700 | [diff] [blame] | 1131 | unset core |
| 1132 | unset coredump_enable |
| 1133 | unset coredump_setup |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1134 | unset dirmods |
Joe Onorato | 0e68f70 | 2024-05-24 14:19:21 -0700 | [diff] [blame] | 1135 | unset get_build_var |
| 1136 | unset get_abs_build_var |
Joe Onorato | 3acb308 | 2024-05-24 14:14:46 -0700 | [diff] [blame] | 1137 | unset getlastscreenshot |
| 1138 | unset getprebuilt |
| 1139 | unset getscreenshotpath |
| 1140 | unset getsdcardpath |
| 1141 | unset gettargetarch |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1142 | unset ggrep |
| 1143 | unset gogrep |
Joe Onorato | 3acb308 | 2024-05-24 14:14:46 -0700 | [diff] [blame] | 1144 | unset hmm |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1145 | unset installmod |
Joe Onorato | 3acb308 | 2024-05-24 14:14:46 -0700 | [diff] [blame] | 1146 | unset is64bit |
| 1147 | unset isviewserverstarted |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1148 | unset jgrep |
| 1149 | unset jsongrep |
Joe Onorato | 3acb308 | 2024-05-24 14:14:46 -0700 | [diff] [blame] | 1150 | unset key_back |
| 1151 | unset key_home |
| 1152 | unset key_menu |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1153 | unset ktgrep |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1154 | unset m |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1155 | unset mangrep |
| 1156 | unset mgrep |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1157 | unset mm |
| 1158 | unset mma |
| 1159 | unset mmm |
| 1160 | unset mmma |
| 1161 | unset outmod |
| 1162 | unset overrideflags |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1163 | unset owngrep |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1164 | unset pathmod |
Joe Onorato | ff277c5 | 2024-05-23 12:52:07 -0700 | [diff] [blame] | 1165 | unset pez |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1166 | unset pygrep |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1167 | unset qpid |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1168 | unset rcgrep |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1169 | unset refreshmod |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1170 | unset resgrep |
| 1171 | unset rsgrep |
Zhuoyao Zhang | 1698d49 | 2024-05-21 23:55:27 +0000 | [diff] [blame] | 1172 | unset run_tool_with_logging |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1173 | unset sepgrep |
| 1174 | unset sgrep |
Joe Onorato | 3acb308 | 2024-05-24 14:14:46 -0700 | [diff] [blame] | 1175 | unset startviewserver |
| 1176 | unset stopviewserver |
| 1177 | unset systemstack |
Joe Onorato | 6b54383 | 2024-05-23 12:26:50 -0700 | [diff] [blame] | 1178 | unset syswrite |
Joe Onorato | 1b9ab29 | 2024-05-17 12:16:43 -0700 | [diff] [blame] | 1179 | unset tomlgrep |
| 1180 | unset treegrep |
Cole Faust | 45844ab | 2022-08-30 13:59:07 -0700 | [diff] [blame] | 1181 | |
Colin Cross | 7131972 | 2023-10-24 10:58:46 -0700 | [diff] [blame] | 1182 | |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1183 | validate_current_shell |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 1184 | set_global_paths |
Jim Tang | a881a25 | 2018-06-19 16:34:41 +0800 | [diff] [blame] | 1185 | source_vendorsetup |
Kenny Root | 52aa81c | 2011-07-15 11:07:06 -0700 | [diff] [blame] | 1186 | addcompletions |
Joe Onorato | 7c3a77f | 2022-12-05 13:05:14 -0800 | [diff] [blame] | 1187 | |
Chirayu Desai | f17e310 | 2013-03-19 17:50:37 +0530 | [diff] [blame] | 1188 | export ANDROID_BUILD_TOP=$(gettop) |
Michael Bestas | 3a8fb88 | 2016-08-26 00:37:02 +0300 | [diff] [blame] | 1189 | |
| 1190 | . $ANDROID_BUILD_TOP/vendor/lineage/build/envsetup.sh |
Alexander Martinz | e2761e7 | 2022-04-07 18:02:53 +0200 | [diff] [blame] | 1191 | . $ANDROID_BUILD_TOP/vendor/shiftos/build/envsetup.sh |