1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 # Intended to be included by chrome_syzygy.gyp. A variable 'dll_name' should
6 # be set to the base name of the DLL. This is used to generate the build steps
7 # for both chrome.dll and chrome_child.dll when in multiple dll mode.
9 # Reorder or instrument the initial chrome DLL executable, placing the
10 # optimized output and corresponding PDB file into the "syzygy"
12 # This target won't build in fastbuild, since there are no PDBs.
14 '<(DEPTH)/chrome/chrome.gyp:<(dll_name)_dll',
17 ['syzyasan==0 and syzygy_optimize==1', {
18 # Reorder chrome DLL executable.
19 # If there's a matching chrome.dll-ordering.json file present in
20 # the output directory, chrome.dll will be ordered according to
21 # that, otherwise it will be randomized.
24 'action_name': 'Reorder Chrome with Syzygy',
26 '<(DEPTH)/chrome/tools/build/win/syzygy/reorder.py',
27 '<(PRODUCT_DIR)/<(dll_name).dll',
28 '<(PRODUCT_DIR)/<(dll_name).dll.pdb',
31 '<(dest_dir)/<(dll_name).dll',
32 '<(dest_dir)/<(dll_name).dll.pdb',
36 '<(DEPTH)/chrome/tools/build/win/syzygy/reorder.py',
37 '--input_executable', '<(PRODUCT_DIR)/<(dll_name).dll',
38 '--input_symbol', '<(PRODUCT_DIR)/<(dll_name).dll.pdb',
39 '--destination_dir', '<(dest_dir)',
44 ['syzyasan==1 and syzygy_optimize==0', {
45 # Instrument chrome DLL executable with SyzyAsan.
48 'action_name': 'Instrument Chrome with SyzyAsan',
50 '<(DEPTH)/chrome/tools/build/win/syzygy/instrument.py',
51 '<(DEPTH)/chrome/tools/build/win/syzygy/'
52 'syzyasan-instrumentation-filter.txt',
53 '<(PRODUCT_DIR)/<(dll_name).dll',
56 '<(dest_dir)/<(dll_name).dll',
57 '<(dest_dir)/<(dll_name).dll.pdb',
58 '<(dest_dir)/win-syzyasan-filter-<(dll_name).txt.json',
62 '<(DEPTH)/chrome/tools/build/win/syzygy/instrument.py',
64 '--input_executable', '<(PRODUCT_DIR)/<(dll_name).dll',
65 '--input_symbol', '<(PRODUCT_DIR)/<(dll_name).dll.pdb',
67 '<(DEPTH)/chrome/tools/build/win/syzygy/'
68 'syzyasan-instrumentation-filter.txt',
69 '--output-filter-file',
70 '<(dest_dir)/win-syzyasan-filter-<(dll_name).txt.json',
71 '--destination_dir', '<(dest_dir)',
76 'copy_syzyasan_binaries',