OLD | NEW |
| (Empty) |
1 # Copyright 2016 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. | |
4 | |
5 copy("copy_syzyasan_binaries") { | |
6 visibility = [ | |
7 "//chrome/*", | |
8 "//content/*", | |
9 ] | |
10 | |
11 source_dir = "//third_party/syzygy/binaries/exe" | |
12 | |
13 sources = [ | |
14 "$source_dir/agent_logger.exe", | |
15 "$source_dir/minidump_symbolizer.py", | |
16 "$source_dir/syzyasan_rtl.dll", | |
17 "$source_dir/syzyasan_rtl.dll.pdb", | |
18 ] | |
19 | |
20 outputs = [ | |
21 "$root_out_dir/syzygy/{{source_file_part}}", | |
22 ] | |
23 } | |
OLD | NEW |