OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/win/manifest.gni") | 5 import("//build/config/win/manifest.gni") |
6 import("//chrome/version.gni") | 6 import("//chrome/version.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 process_version("chrome_elf_resources") { | 9 process_version("chrome_elf_resources") { |
| 10 template_file = chrome_version_rc_template |
10 sources = [ | 11 sources = [ |
11 "chrome_elf.ver", | 12 "chrome_elf.ver", |
12 ] | 13 ] |
13 output = "$target_gen_dir/chrome_elf_version.rc" | 14 output = "$target_gen_dir/chrome_elf_version.rc" |
14 } | 15 } |
15 | 16 |
16 # This manifest matches what GYP produces. It may not even be necessary. | 17 # This manifest matches what GYP produces. It may not even be necessary. |
17 windows_manifest("chrome_elf_manifest") { | 18 windows_manifest("chrome_elf_manifest") { |
18 sources = [ | 19 sources = [ |
19 as_invoker_manifest, | 20 as_invoker_manifest, |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 ] | 204 ] |
204 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", | 205 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", |
205 root_build_dir) ] | 206 root_build_dir) ] |
206 } | 207 } |
207 | 208 |
208 shared_library("blacklist_test_dll_3") { | 209 shared_library("blacklist_test_dll_3") { |
209 sources = [ | 210 sources = [ |
210 "blacklist/test/blacklist_test_dll_3.cc", | 211 "blacklist/test/blacklist_test_dll_3.cc", |
211 ] | 212 ] |
212 } | 213 } |
OLD | NEW |