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

Unified Diff: breakpad/breakpad.gyp

Issue 157743004: android: Require exe unittests to have a foo_unittest_stripped target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: debug more Created 6 years, 10 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 | « no previous file | build/all.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: breakpad/breakpad.gyp
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp
index 7d0a2e9e444d7031668a5b54826b8e4380a3dbef..fed737e2961a659af5f707b15973a42e68448ad5 100644
--- a/breakpad/breakpad.gyp
+++ b/breakpad/breakpad.gyp
@@ -855,5 +855,20 @@
}
],
}],
+ ['OS=="android"', {
+ 'targets': [
+ {
+ 'target_name': 'breakpad_unittests_stripped',
+ 'type': 'none',
+ 'dependencies': [ 'breakpad_unittests' ],
+ 'actions': [{
+ 'action_name': 'strip breakpad_unittests',
+ 'inputs': [ '<(PRODUCT_DIR)/breakpad_unittests' ],
+ 'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ],
+ 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ],
+ }],
+ }
+ ],
+ }],
],
}
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698