diff options
author | eseidel@chromium.org <eseidel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-29 22:00:38 +0000 |
---|---|---|
committer | eseidel@chromium.org <eseidel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-29 22:00:38 +0000 |
commit | 4c48ef10ba738c1bbce3223fbc4512be3a106040 (patch) | |
tree | 4895fc083593e66de431fa14d5d2475299fa73ed /skia/skia.gyp | |
parent | d814255eaefd2e6f24de7c9847568533c577785f (diff) | |
download | chromium_src-4c48ef10ba738c1bbce3223fbc4512be3a106040.zip chromium_src-4c48ef10ba738c1bbce3223fbc4512be3a106040.tar.gz chromium_src-4c48ef10ba738c1bbce3223fbc4512be3a106040.tar.bz2 |
Make profiling=1 work for chromium-android
Currently if you set profiling=1 content_shell will load,
it will just load to a white screen (and attempts to sample
the binary with perf will not get proper stacks).
This adds -mapcs and -marm per the AndroidPerf wiki docs.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/11316228
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170249 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/skia.gyp')
-rw-r--r-- | skia/skia.gyp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/skia/skia.gyp b/skia/skia.gyp index 3a92620..6c11f07 100644 --- a/skia/skia.gyp +++ b/skia/skia.gyp @@ -706,6 +706,8 @@ # targets via common.gypi. 'cflags!': [ '-fno-omit-frame-pointer', + '-marm', + '-mapcs-frame', ], 'cflags': [ '-fomit-frame-pointer', |