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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'files': [ | 56 'files': [ |
57 '<(PRODUCT_DIR)/chrome_child.dll', | 57 '<(PRODUCT_DIR)/chrome_child.dll', |
58 '<(PRODUCT_DIR)/chrome_child.dll.pdb', | 58 '<(PRODUCT_DIR)/chrome_child.dll.pdb', |
59 ], | 59 ], |
60 }, | 60 }, |
61 ], | 61 ], |
62 }], | 62 }], |
63 }], | 63 }], |
64 ], | 64 ], |
65 }], | 65 }], |
66 ['OS=="win" and asan==1', { | |
67 'variables': { | |
68 'dest_dir': '<(PRODUCT_DIR)/syzygy', | |
69 'syzygy_exe_dir': '<(DEPTH)/third_party/syzygy/binaries/exe', | |
70 }, | |
71 # Copy the SyzyASan runtime and logger to the syzygy directory. | |
72 'targets': [ | |
73 { | |
74 'target_name': 'copy_syzyasan_binaries', | |
75 'type': 'none', | |
76 'outputs': [ | |
77 '<(dest_dir)/agent_logger.exe', | |
78 '<(dest_dir)/asan_rtl.dll', | |
79 '<(dest_dir)/asan_rtl.dll.pdb', | |
80 ], | |
81 'copies': [ | |
82 { | |
83 'destination': '<(dest_dir)', | |
84 'files': [ | |
85 '<(syzygy_exe_dir)/agent_logger.exe', | |
86 '<(syzygy_exe_dir)/asan_rtl.dll', | |
87 '<(syzygy_exe_dir)/asan_rtl.dll.pdb', | |
88 ], | |
89 }, | |
90 ], | |
91 }, | |
92 ], | |
93 }], | |
94 ], | 66 ], |
95 } | 67 } |
OLD | NEW |