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", | |
18 "chrome_elf_main.cc", | 17 "chrome_elf_main.cc", |
19 "chrome_elf_main.h", | 18 "chrome_elf_main.h", |
20 ] | 19 ] |
21 deps = [ | 20 deps = [ |
22 ":blacklist", | 21 ":blacklist", |
23 ":breakpad", | 22 ":breakpad", |
24 ":lib", | 23 ":lib", |
25 ":chrome_elf_resources", | 24 ":chrome_elf_resources", |
26 ] | 25 ] |
27 configs += [ "//build/config/win:windowed" ] | 26 configs += [ "//build/config/win:windowed" ] |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 ] | 193 ] |
195 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", | 194 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", |
196 root_build_dir) ] | 195 root_build_dir) ] |
197 } | 196 } |
198 | 197 |
199 shared_library("blacklist_test_dll_3") { | 198 shared_library("blacklist_test_dll_3") { |
200 sources = [ | 199 sources = [ |
201 "blacklist/test/blacklist_test_dll_3.cc", | 200 "blacklist/test/blacklist_test_dll_3.cc", |
202 ] | 201 ] |
203 } | 202 } |
OLD | NEW |