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

Side by Side Diff: chrome/chrome_syzygy.gyp

Issue 1234033005: Add Syzygy support to Windows GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 | « build/config/win/BUILD.gn ('k') | chrome/tools/build/win/syzygy/BUILD.gn » ('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 'variables': { 5 'variables': {
6 'dest_dir': '<(PRODUCT_DIR)/syzygy', 6 'dest_dir': '<(PRODUCT_DIR)/syzygy',
7 }, 7 },
8 'conditions': [ 8 'conditions': [
9 ['syzyasan==1', { 9 ['syzyasan==1', {
10 'variables': { 10 'variables': {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'chrome_syzygy.gypi', 84 'chrome_syzygy.gypi',
85 ], 85 ],
86 }, 86 },
87 ], 87 ],
88 }], 88 }],
89 # For the official SyzyASan builds just copy chrome_child.dll to the 89 # For the official SyzyASan builds just copy chrome_child.dll to the
90 # Syzygy directory. 90 # Syzygy directory.
91 ['syzyasan==1 and buildtype=="Official"', { 91 ['syzyasan==1 and buildtype=="Official"', {
92 'targets': [ 92 'targets': [
93 { 93 {
94 # GN version: //chrome/tools/build/win/syzygy:chrome_child_dll_s yzygy_copy
94 'target_name': 'chrome_child_dll_syzygy_copy', 95 'target_name': 'chrome_child_dll_syzygy_copy',
95 'type': 'none', 96 'type': 'none',
96 'inputs': [ 97 'inputs': [
97 '<(PRODUCT_DIR)/chrome_child.dll', 98 '<(PRODUCT_DIR)/chrome_child.dll',
98 '<(PRODUCT_DIR)/chrome_child.dll.pdb', 99 '<(PRODUCT_DIR)/chrome_child.dll.pdb',
99 ], 100 ],
100 'outputs': [ 101 'outputs': [
101 '<(dest_dir)/chrome_child.dll', 102 '<(dest_dir)/chrome_child.dll',
102 '<(dest_dir)/chrome_child.dll.pdb', 103 '<(dest_dir)/chrome_child.dll.pdb',
103 ], 104 ],
104 'copies': [ 105 'copies': [
105 { 106 {
106 'destination': '<(dest_dir)', 107 'destination': '<(dest_dir)',
107 'files': [ 108 'files': [
108 '<(PRODUCT_DIR)/chrome_child.dll', 109 '<(PRODUCT_DIR)/chrome_child.dll',
109 '<(PRODUCT_DIR)/chrome_child.dll.pdb', 110 '<(PRODUCT_DIR)/chrome_child.dll.pdb',
110 ], 111 ],
111 }, 112 },
112 ], 113 ],
113 }], 114 }],
114 }], 115 }],
115 ], 116 ],
116 }], 117 }],
117 ], 118 ],
118 }], 119 }],
119 ], 120 ],
120 } 121 }
OLDNEW
« no previous file with comments | « build/config/win/BUILD.gn ('k') | chrome/tools/build/win/syzygy/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698