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

Side by Side Diff: chrome/chrome_syzygy.gyp

Issue 23460023: Copy asan_rtl.* and agent_logger.exe to the syzygy directory for the ASan builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and address Gab's nit. Created 7 years, 3 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
« no previous file with comments | « no previous file | chrome/chrome_syzygy.gypi » ('j') | chrome/tools/build/win/syzygy_instrument.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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',
Nico 2013/09/11 03:17:55 Is this identical to the real asan runtime? If not
Sébastien Marchand 2013/09/11 04:25:39 It's not identical to the "real" asan runtime, and
Nico 2013/09/11 04:26:35 I think that's the reply I got when I asked for th
Sébastien Marchand 2013/09/11 04:34:43 Oops, I wasn't aware that someone asked to do the
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 }],
66 ], 94 ],
67 } 95 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_syzygy.gypi » ('j') | chrome/tools/build/win/syzygy_instrument.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698