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

Side by Side Diff: chrome/chrome_syzygy.gyp

Issue 23858006: Revert 222650 "Copy asan_rtl.* and agent_logger.exe to the syzyg..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Patch from Git, as drover fails committing for me. 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_syzygy.gypi » ('j') | no next file with comments »
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',
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_syzygy.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698