Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(528)

Unified Diff: chrome/tools/build/mac/dump_product_syms

Issue 7562002: Generate Breakpad symbols for Remoting Host plugin on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add blank line. Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/mac/dump_product_syms
diff --git a/chrome/tools/build/mac/dump_product_syms b/chrome/tools/build/mac/dump_product_syms
index 4dc0b8ada77218313cb798e2f35debe4af114cc8..477429c11787cd45ad1d929446c9a287673cdab4 100755
--- a/chrome/tools/build/mac/dump_product_syms
+++ b/chrome/tools/build/mac/dump_product_syms
@@ -55,13 +55,14 @@ for SRC_NAME in "${SRC_APP_NAME}.app" \
"crash_inspector" \
"crash_report_sender.app" \
"ffmpegsumo.so" \
- "libplugin_carbon_interpose.dylib" ; do
+ "libplugin_carbon_interpose.dylib" \
+ "remoting_host_plugin.plugin" ; do
# SRC_STEM is the name of the file within the DWARF directory of the .dSYM
# bundle, which comes from the on-disk name of an executable or dylib within
- # its enclosing .app or .framework bundle. This is the bundle name without
- # .app or .framework appended. For non-bundled types, the stem is just the
- # name of the singular file on disk.
- SRC_STEM=$(echo "${SRC_NAME}" | sed -Ee 's/^(.*)\.(app|framework)$/\1/')
+ # its enclosing .app, .framework or .plugin bundle. This is the bundle name
+ # without .app, .framework or .plugin appended. For non-bundled types, the
+ # stem is just the name of the singular file on disk.
+ SRC_STEM=$(echo "${SRC_NAME}" | sed -Ee 's/\.(app|framework|plugin)$//')
DSYM_NAME="${SRC_NAME}.dSYM"
DSYM_PATH="${BUILT_PRODUCTS_DIR}/${DSYM_NAME}"
DWARF_PATH="${DSYM_PATH}/Contents/Resources/DWARF/${SRC_STEM}"
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698