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 '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 Loading... |
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 } |
OLD | NEW |