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

Unified Diff: breakpad/breakpad.gyp

Issue 655543005: Added support of shared_library build for tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments formatting in GYPs Created 6 years, 2 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 834122d319aa2edfd6ac9583a9aefcb410b4f2da..90f25e38c7c0cee19f57776b02d82cccc8d0f941 100644
--- a/breakpad/breakpad.gyp
+++ b/breakpad/breakpad.gyp
@@ -897,6 +897,24 @@
'outputs': [ '<(PRODUCT_DIR)/breakpad_unittests_stripped' ],
'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ],
}],
+ },
+ {
+ 'target_name': 'breakpad_unittests_deps',
+ 'type': 'none',
+ 'dependencies': [
+ 'breakpad_unittests_stripped',
+ ],
+ # For the component build, ensure dependent shared libraries are
+ # stripped and put alongside breakpad_unittest to simplify pushing to
+ # the device.
+ 'variables': {
+ 'output_dir': '<(PRODUCT_DIR)/breakpad_unittests_deps/',
+ 'native_binary': '<(PRODUCT_DIR)/breakpad_unittests_stripped',
+ 'include_main_binary': 0,
+ },
+ 'includes': [
+ '../build/android/native_app_dependencies.gypi'
+ ],
}
],
}],
« 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