OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 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 # This script expects the following environment variables to be set. Xcode | 7 # This script expects the following environment variables to be set. Xcode |
8 # normally sets them: | 8 # normally sets them: |
9 # | 9 # |
10 # CONFIGURATION - Release or Debug; this script only operates when Release. | 10 # CONFIGURATION - Release or Debug; this script only operates when Release. |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 # Everything in SRC_NAMES is required. It's an error for any of these files | 76 # Everything in SRC_NAMES is required. It's an error for any of these files |
77 # to be missing. | 77 # to be missing. |
78 SRC_NAMES=( | 78 SRC_NAMES=( |
79 "${SRC_APP_NAME}.app" | 79 "${SRC_APP_NAME}.app" |
80 "${SRC_APP_NAME} Framework.framework" | 80 "${SRC_APP_NAME} Framework.framework" |
81 "${SRC_APP_NAME} Helper.app" | 81 "${SRC_APP_NAME} Helper.app" |
82 "crash_inspector" | 82 "crash_inspector" |
83 "crash_report_sender.app" | 83 "crash_report_sender.app" |
84 "exif.so" | 84 "exif.so" |
85 "ffmpegsumo.so" | 85 "ffmpegsumo.so" |
86 "ppGoogleNaClPluginChrome.plugin" | |
87 ) | 86 ) |
88 | 87 |
89 # PDF.plugin is optional. Only include it if present. | 88 # PDF.plugin is optional. Only include it if present. |
90 if [[ -e "${BUILT_PRODUCTS_DIR}/PDF.plugin" ]]; then | 89 if [[ -e "${BUILT_PRODUCTS_DIR}/PDF.plugin" ]]; then |
91 SRC_NAMES[${#SRC_NAMES[@]}]="PDF.plugin" | 90 SRC_NAMES[${#SRC_NAMES[@]}]="PDF.plugin" |
92 fi | 91 fi |
93 | 92 |
94 # libpeerconnection.so is optional. Only include it if present. | 93 # libpeerconnection.so is optional. Only include it if present. |
95 if [[ -e "${BUILT_PRODUCTS_DIR}/libpeerconnection.so" ]]; then | 94 if [[ -e "${BUILT_PRODUCTS_DIR}/libpeerconnection.so" ]]; then |
96 SRC_NAMES[${#SRC_NAMES[@]}]="libpeerconnection.so" | 95 SRC_NAMES[${#SRC_NAMES[@]}]="libpeerconnection.so" |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 # the .dSYM archive if a new one is needed | 187 # the .dSYM archive if a new one is needed |
189 DSYMS[${#DSYMS[@]}]="${DSYM_NAME}" | 188 DSYMS[${#DSYMS[@]}]="${DSYM_NAME}" |
190 done | 189 done |
191 | 190 |
192 # Create the archive of .dSYM bundles. | 191 # Create the archive of .dSYM bundles. |
193 if [ ! -e "${DSYM_TAR_PATH}" ] ; then | 192 if [ ! -e "${DSYM_TAR_PATH}" ] ; then |
194 # Change directory so that absolute paths aren't included in the archive. | 193 # Change directory so that absolute paths aren't included in the archive. |
195 (cd "${BUILT_PRODUCTS_DIR}" && | 194 (cd "${BUILT_PRODUCTS_DIR}" && |
196 tar -jcf "${DSYM_TAR_PATH}" "${DSYMS[@]}") | 195 tar -jcf "${DSYM_TAR_PATH}" "${DSYMS[@]}") |
197 fi | 196 fi |
OLD | NEW |