OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'conditions': [ | 5 'conditions': [ |
6 ['OS=="win" and fastbuild==0', { | 6 ['OS=="win" and fastbuild==0', { |
7 'variables': { | 7 'variables': { |
8 'dll_name': 'chrome', | 8 'dll_name': 'chrome', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 16 matching lines...) Expand all Loading... | |
27 { | 27 { |
28 'target_name': 'chrome_child_dll_syzygy', | 28 'target_name': 'chrome_child_dll_syzygy', |
29 'type': 'none', | 29 'type': 'none', |
30 'sources' : [], | 30 'sources' : [], |
31 'includes': [ | 31 'includes': [ |
32 'chrome_syzygy.gypi', | 32 'chrome_syzygy.gypi', |
33 ], | 33 ], |
34 }, | 34 }, |
35 ], | 35 ], |
36 }], | 36 }], |
37 ['OS=="win" and asan==1 and fastbuild==0', { | |
gab
2013/09/09 13:26:28
Why depend on |fastbuild| here?
Sébastien Marchand
2013/09/10 17:53:42
No reason, cut-and-paste error. Thanks.
On 2013/0
| |
38 'variables': { | |
39 'dest_dir': '<(PRODUCT_DIR)/syzygy', | |
40 'syzygy_exe_dir': '<(DEPTH)/third_party/syzygy/binaries/exe', | |
41 }, | |
42 # Copy the SyzyASan runtime and logger to the syzygy directory. | |
43 'targets': [ | |
44 { | |
45 'target_name': 'copy_syzyasan_binaries', | |
gab
2013/09/09 13:26:28
Shouldn't this target depend on the target generat
Sébastien Marchand
2013/09/10 17:53:42
No, the target chrome_dll_syzygy and chrome_child_
| |
46 'type': 'none', | |
47 'outputs': [ | |
48 '<(dest_dir)/agent_logger.exe', | |
49 '<(dest_dir)/asan_rtl.dll', | |
50 '<(dest_dir)/asan_rtl.dll.pdb', | |
51 ], | |
52 'copies': [ | |
53 { | |
54 'destination': '<(dest_dir)', | |
55 'files': [ | |
56 '<(syzygy_exe_dir)/agent_logger.exe', | |
57 '<(syzygy_exe_dir)/asan_rtl.dll', | |
58 '<(syzygy_exe_dir)/asan_rtl.dll.pdb', | |
59 ], | |
60 }, | |
61 ], | |
62 }, | |
63 ], | |
64 }], | |
37 ], | 65 ], |
38 } | 66 } |
OLD | NEW |