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

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: 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 16 matching lines...) Expand all
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 }
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