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

Unified Diff: sandbox/linux/sandbox_linux.gypi

Issue 1854233002: Reland 2 of GN: Make breakpad_unittests & sandbox_linux_unittests use test() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test-minor-renames
Patch Set: Fix PIE errors, fix component mode. Created 4 years, 8 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 | « sandbox/linux/BUILD.gn ('k') | testing/test.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/linux/sandbox_linux.gypi
diff --git a/sandbox/linux/sandbox_linux.gypi b/sandbox/linux/sandbox_linux.gypi
index 9576802a4ae7e7b7a9127981e02ae5be50d98b70..c19bdb1c5f67b1fcbebc0b772aae0d07b0ca0eb6 100644
--- a/sandbox/linux/sandbox_linux.gypi
+++ b/sandbox/linux/sandbox_linux.gypi
@@ -376,29 +376,15 @@
[ 'OS=="android"', {
'targets': [
{
- 'target_name': 'sandbox_linux_unittests_stripped',
- 'type': 'none',
- 'dependencies': [ 'sandbox_linux_unittests' ],
- 'actions': [{
- 'action_name': 'strip sandbox_linux_unittests',
- 'inputs': [ '<(PRODUCT_DIR)/sandbox_linux_unittests' ],
- 'outputs': [ '<(PRODUCT_DIR)/sandbox_linux_unittests_stripped' ],
- 'action': [ '<(android_strip)', '<@(_inputs)', '-o', '<@(_outputs)' ],
- }],
- },
- {
'target_name': 'sandbox_linux_unittests_deps',
'type': 'none',
'dependencies': [
- 'sandbox_linux_unittests_stripped',
+ 'sandbox_linux_unittests',
],
- # For the component build, ensure dependent shared libraries are
- # stripped and put alongside sandbox_linux_unittests to simplify pushing
- # to the device.
'variables': {
- 'output_dir': '<(PRODUCT_DIR)/sandbox_linux_unittests_deps/',
- 'native_binary': '<(PRODUCT_DIR)/sandbox_linux_unittests_stripped',
- 'include_main_binary': 0,
+ 'output_dir': '<(PRODUCT_DIR)/sandbox_linux_unittests__dist/',
+ 'native_binary': '<(PRODUCT_DIR)/sandbox_linux_unittests',
+ 'include_main_binary': 1,
},
'includes': [
'../../build/android/native_app_dependencies.gypi'
« no previous file with comments | « sandbox/linux/BUILD.gn ('k') | testing/test.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698