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

Unified Diff: build/asan.gyp

Issue 11642018: Add a postbuild action for executables built with ASan on Mac OS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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 | « build/all.gyp ('k') | build/common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/asan.gyp
===================================================================
--- build/asan.gyp (revision 0)
+++ build/asan.gyp (revision 0)
@@ -0,0 +1,44 @@
+# Copyright (c) 2012 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': 'asan_dynamic_runtime',
+ 'type': 'none',
+ 'variables': {
+ 'asan_sentinel%': 1,
Mark Mentovai 2013/02/11 17:18:19 Does removing this % change anything?
+ },
+
+ 'direct_dependent_settings': {
+ 'variables': {
+ 'asan_sentinel%': 1,
Mark Mentovai 2013/02/11 17:18:19 Wasn’t expecting to see this here.
+ },
+
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)',
+ 'files': [
+ '/usr/bin/true',
+ ],
+ },
+ ],
+ 'postbuilds': [
+ {
+ 'variables': {
+ 'copy_asan_runtime_dylib_path':
+ 'mac/copy_asan_runtime_dylib.sh',
+ 'copy_asan_runtime_dylib_options%': [
+ ],
+ },
+ 'postbuild_name': 'Copy ASan runtime dylib',
+ 'action': [
+ '<(copy_asan_runtime_dylib_path)',
+ '>@(copy_asan_runtime_dylib_options)',
+ ],
+ }],
+ },
+ },
+ ],
+}
Property changes on: build/asan.gyp
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « build/all.gyp ('k') | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698