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

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
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
11 'direct_dependent_settings': {
12 'copies': [
13 {
14 'destination': '<(PRODUCT_DIR)',
15 'files': [
16 '/usr/bin/true',
17 ],
18 },
19 ],
20 'postbuilds': [
21 {
22 'variables': {
23 'copy_asan_runtime_dylib_path':
24 'mac/copy_asan_runtime_dylib.sh',
25 'copy_asan_runtime_dylib_options%': [
26 ],
27 },
28 'postbuild_name': 'Copy ASan runtime dylib',
29 'action': [
30 '<(copy_asan_runtime_dylib_path)',
31 '>@(copy_asan_runtime_dylib_options)',
32 ],
33 }],
34 },
35 },
36 ],
37 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | build/common.gypi » ('j') | build/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698