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("//chrome/version.gni") | 5 import("//chrome/version.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 process_version("chrome_elf_resources") { | 8 process_version("chrome_elf_resources") { |
9 sources = [ | 9 sources = [ |
10 "chrome_elf.ver", | 10 "chrome_elf.ver", |
11 ] | 11 ] |
12 output = "$target_gen_dir/chrome_elf_version.rc" | 12 output = "$target_gen_dir/chrome_elf_version.rc" |
13 } | 13 } |
14 | 14 |
15 shared_library("chrome_elf") { | 15 shared_library("chrome_elf") { |
16 sources = [ | 16 sources = [ |
| 17 "$target_gen_dir/chrome_elf_version.rc", |
17 "chrome_elf_main.cc", | 18 "chrome_elf_main.cc", |
18 "chrome_elf_main.h", | 19 "chrome_elf_main.h", |
19 ] | 20 ] |
20 deps = [ | 21 deps = [ |
21 ":blacklist", | 22 ":blacklist", |
22 ":breakpad", | 23 ":breakpad", |
23 ":lib", | 24 ":lib", |
24 ":chrome_elf_resources", | 25 ":chrome_elf_resources", |
25 ] | 26 ] |
26 configs += [ "//build/config/win:windowed" ] | 27 configs += [ "//build/config/win:windowed" ] |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 ] | 194 ] |
194 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", | 195 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", |
195 root_build_dir) ] | 196 root_build_dir) ] |
196 } | 197 } |
197 | 198 |
198 shared_library("blacklist_test_dll_3") { | 199 shared_library("blacklist_test_dll_3") { |
199 sources = [ | 200 sources = [ |
200 "blacklist/test/blacklist_test_dll_3.cc", | 201 "blacklist/test/blacklist_test_dll_3.cc", |
201 ] | 202 ] |
202 } | 203 } |
OLD | NEW |