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

Unified Diff: tools/android/run_pie/run_pie.gyp

Issue 1438853002: Remove all .gyp and .gypi files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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 | « tools/android/purge_ashmem/purge_ashmem.gyp ('k') | tools/relocation_packer/relocation_packer.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/run_pie/run_pie.gyp
diff --git a/tools/android/run_pie/run_pie.gyp b/tools/android/run_pie/run_pie.gyp
deleted file mode 100644
index 75850f4697066b15adc6f897ffd852bc406c619b..0000000000000000000000000000000000000000
--- a/tools/android/run_pie/run_pie.gyp
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'targets': [
- {
- 'target_name': 'run_pie-unstripped',
- 'type': 'executable',
- 'sources': [
- 'run_pie.c',
- ],
- # See crbug.com/373219. This is the only Android executable which must be
- # non PIE.
- 'cflags!': [
- '-fPIE',
- ],
- 'ldflags!': [
- '-pie',
- ],
- # Don't inherit unneeded dependencies on libc++, so the binary remains
- # self-contained also in component=shared_library builds.
- 'libraries!': [
- '-l<(android_libcpp_library)',
- ],
- },
- {
- 'target_name': 'run_pie',
- 'type': 'none',
- 'dependencies': [
- 'run_pie-unstripped',
- ],
- 'actions': [
- {
- 'action_name': 'strip_run_pie',
- 'inputs': ['<(PRODUCT_DIR)/run_pie-unstripped'],
- 'outputs': ['<(PRODUCT_DIR)/run_pie'],
- 'action': [
- '<(android_strip)',
- '--strip-unneeded',
- '<@(_inputs)',
- '-o',
- '<@(_outputs)',
- ],
- },
- ],
- },
- ],
-}
« no previous file with comments | « tools/android/purge_ashmem/purge_ashmem.gyp ('k') | tools/relocation_packer/relocation_packer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698