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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/all.gyp ('k') | build/common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'asan_dynamic_runtime',
9 'type': 'none',
10 'variables': {
11 'asan_sentinel%': 1,
Mark Mentovai 2013/02/11 17:18:19 Does removing this % change anything?
12 },
13
14 'direct_dependent_settings': {
15 'variables': {
16 'asan_sentinel%': 1,
Mark Mentovai 2013/02/11 17:18:19 Wasn’t expecting to see this here.
17 },
18
19 'copies': [
20 {
21 'destination': '<(PRODUCT_DIR)',
22 'files': [
23 '/usr/bin/true',
24 ],
25 },
26 ],
27 'postbuilds': [
28 {
29 'variables': {
30 'copy_asan_runtime_dylib_path':
31 'mac/copy_asan_runtime_dylib.sh',
32 'copy_asan_runtime_dylib_options%': [
33 ],
34 },
35 'postbuild_name': 'Copy ASan runtime dylib',
36 'action': [
37 '<(copy_asan_runtime_dylib_path)',
38 '>@(copy_asan_runtime_dylib_options)',
39 ],
40 }],
41 },
42 },
43 ],
44 }
OLDNEW
« 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