Chromium Code Reviews| 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 |