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

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

Issue 2331893004: Remove GYP files in breakpad, build, and tools. (Closed)
Patch Set: Created 4 years, 3 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 | « tools/android/memdump/memdump.gyp ('k') | tools/android/ps_ext/ps_ext.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/memtrack_helper/memtrack_helper.gyp
diff --git a/tools/android/memtrack_helper/memtrack_helper.gyp b/tools/android/memtrack_helper/memtrack_helper.gyp
deleted file mode 100644
index 9a93801e0b9c1b337ae7580f0ae8520fb809bb5e..0000000000000000000000000000000000000000
--- a/tools/android/memtrack_helper/memtrack_helper.gyp
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2015 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': 'memtrack_helper-unstripped',
- 'type': 'executable',
- # Unwind tables create a dependency on libc++. By removing them
- # the final binary will not require anything more than libc and libdl.
- # This makes its deployment easier in component=shared_library mode.
- 'cflags!': [
- '-funwind-tables',
- '-fasynchronous-unwind-tables',
- ],
- 'cflags': [
- '-fno-unwind-tables',
- '-fno-asynchronous-unwind-tables',
- ],
- 'sources': [
- 'memtrack_helper.c',
- ],
- 'include_dirs': [
- '../../..',
- ],
- },
- {
- 'target_name': 'memtrack_helper',
- 'type': 'none',
- 'dependencies': [
- 'memtrack_helper-unstripped',
- ],
- 'actions': [
- {
- 'action_name': 'strip_memtrack_helper',
- 'inputs': ['<(PRODUCT_DIR)/memtrack_helper-unstripped'],
- 'outputs': ['<(PRODUCT_DIR)/memtrack_helper'],
- 'action': [
- '<(android_strip)',
- '--strip-unneeded',
- '<@(_inputs)',
- '-o',
- '<@(_outputs)',
- ],
- },
- ],
- },
- {
- # Testing only, not typically pushed, hence not worth stripping.
- 'target_name': 'memtrack_helper_test_client',
- 'type': 'executable',
- 'sources': [
- 'memtrack_helper_test_client.c',
- ],
- 'include_dirs': [
- '../../..',
- ],
- },
- ],
-}
« no previous file with comments | « tools/android/memdump/memdump.gyp ('k') | tools/android/ps_ext/ps_ext.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698