Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 55c380727706e21c6fe41b14b1c537f7dc9a870e..5c9336f6e52482d3248bc645cfb8f700b392b6f0 100644 |
--- a/build/common.gypi |
+++ b/build/common.gypi |
@@ -2530,6 +2530,11 @@ |
['OS=="android"', { |
'variables': { |
'target_arch%': 'arm', # target_arch in android terms. |
+ # The location where debug symbols are archived. This is written to the |
+ # device log on crashes just prior to dropping a tombstone so that |
+ # tools can locate the symbols from the crash log. This is added to the |
+ # GYP_DEFINES by the buildbots that actually archive symbols. |
+ 'chrome_symbols_location%': '', |
Mark Mentovai
2012/09/07 20:22:36
What’s your intention for this?
meaning:
What wi
cjhopman
2012/09/10 16:21:48
Done as discussed.
|
'conditions': [ |
# Android uses x86 instead of ia32 for their target_arch designation. |
['target_arch=="ia32"', { |
@@ -2614,6 +2619,7 @@ |
'__GNU_SOURCE=1', # Necessary for clone() |
'USE_STLPORT=1', |
'_STLP_USE_PTR_SPECIALIZATIONS=1', |
+ 'CHROME_SYMBOLS_LOCATION="<(chrome_symbols_location)"', |
], |
'ldflags!': [ |
'-pthread', # Not supported by Android toolchain. |