| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 | 2 |
| 3 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2009 The Chromium 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 # Make sure we got the header to write into passed to us | 7 # Make sure we got the header to write into passed to us |
| 8 if [ $# -ne 1 ]; then | 8 if [ $# -ne 1 ]; then |
| 9 echo "error: missing branding as an argument" >&2 | 9 echo "error: missing branding as an argument" >&2 |
| 10 exit 1 | 10 exit 1 |
| 11 fi | 11 fi |
| 12 | 12 |
| 13 set -ex | 13 set -ex |
| 14 | 14 |
| 15 # Skip out if we're aren't in Release mode, no need for dump_syms on debug runs. | 15 # Skip out if we're aren't in Release mode, no need for dump_syms on debug runs. |
| 16 if [ "${CONFIGURATION}" != "Release" ] ; then | 16 if [ "${CONFIGURATION}" != "Release" ] ; then |
| 17 exit 0 | 17 exit 0 |
| 18 fi | 18 fi |
| 19 | 19 |
| 20 TOP="${SRCROOT}/.." | 20 TOP="${SRCROOT}/.." |
| 21 BUILD_BRANDING=$1 | 21 BUILD_BRANDING=$1 |
| 22 if [ "${BUILD_BRANDING}" == "Chromium" ]; then | |
| 23 SRC_APP_NAME="Chromium" | |
| 24 elif [ "${BUILD_BRANDING}" == "Chrome" ]; then | |
| 25 SRC_APP_NAME="Google Chrome" | |
| 26 else | |
| 27 echo "error: unknown branding: ${BUILD_BRANDING}" >&2 | |
| 28 exit 1 | |
| 29 fi | |
| 30 | 22 |
| 23 BRAND_SCRIPT="${TOP}/build/branding_value.sh" |
| 24 SRC_APP_NAME=$("${BRAND_SCRIPT}" "${BUILD_BRANDING}" PRODUCT_FULLNAME) |
| 31 . "${TOP}/chrome/VERSION" | 25 . "${TOP}/chrome/VERSION" |
| 32 | 26 |
| 33 BREAKPAD_DUMP_SYMS="${BUILT_PRODUCTS_DIR}/dump_syms" | 27 BREAKPAD_DUMP_SYMS="${BUILT_PRODUCTS_DIR}/dump_syms" |
| 34 BREAKPAD_PRODUCT_ID="${BUILD_BRANDING}_Mac" | 28 BREAKPAD_PRODUCT_ID="${BUILD_BRANDING}_Mac" |
| 35 FULL_VERSION="${MAJOR}.${MINOR}.${BUILD}.${PATCH}" | 29 FULL_VERSION="${MAJOR}.${MINOR}.${BUILD}.${PATCH}" |
| 36 SRC_APP_PATH="${BUILT_PRODUCTS_DIR}/${SRC_APP_NAME}.app" | 30 SRC_APP_PATH="${BUILT_PRODUCTS_DIR}/${SRC_APP_NAME}.app" |
| 37 # Created by the build/mac/strip_from_xcode script. | 31 # Created by the build/mac/strip_from_xcode script. |
| 38 UNSTRIPPED_APP="${SRC_APP_PATH}.dSYM/Contents/Resources/DWARF/${SRC_APP_NAME}" | 32 UNSTRIPPED_APP="${SRC_APP_PATH}.dSYM/Contents/Resources/DWARF/${SRC_APP_NAME}" |
| 39 SYMBOL_FILE="${BUILT_PRODUCTS_DIR}/${BUILD_BRANDING}-${FULL_VERSION} i386.breakp
ad" | 33 SYMBOL_FILE="${BUILT_PRODUCTS_DIR}/${BUILD_BRANDING}-${FULL_VERSION} i386.breakp
ad" |
| 40 | 34 |
| 41 # Only run dump_syms if the file has changed since we last did a dump. | 35 # Only run dump_syms if the file has changed since we last did a dump. |
| 42 if [ "${UNSTRIPPED_APP}" -nt "${SYMBOL_FILE}" ] ; then | 36 if [ "${UNSTRIPPED_APP}" -nt "${SYMBOL_FILE}" ] ; then |
| 43 "${BREAKPAD_DUMP_SYMS}" -a i386 "${UNSTRIPPED_APP}" > "${SYMBOL_FILE}" | 37 "${BREAKPAD_DUMP_SYMS}" -a i386 "${UNSTRIPPED_APP}" > "${SYMBOL_FILE}" |
| 44 fi | 38 fi |
| OLD | NEW |