blob: 2e150a692cb9f98ea3b6d96158c3b58c389f7b54 [file] [log] [blame]
Joe Onorato590ae9f2024-05-24 15:38:58 -07001#!/bin/bash
2
3# Copyright 2024, The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# This ad is kind of big, so only show it if this appears to be a clean build.
18source $(cd $(dirname $BASH_SOURCE) &> /dev/null && pwd)/../../shell_utils.sh
19if [[ ! -e $(getoutdir)/soong/build.${TARGET_PRODUCT}.ninja ]]; then
20 echo
21 echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
22 echo " Wondering whether to use user, userdebug or eng?"
23 echo
24 echo " user The builds that ship to users. Reduced debugability."
25 echo " userdebug High fidelity to user builds but with some debugging options"
26 echo " enabled. Best suited for performance testing or day-to-day use"
27 echo " with debugging enabled."
28 echo " eng More debugging options enabled and faster build times, but"
29 echo " runtime performance tradeoffs. Best suited for day-to-day"
30 echo " local development when not doing performance testing."
31 echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
32 echo
33fi
34