Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//chrome/version.gni") | |
| 6 import("//testing/test.gni") | |
| 7 | |
| 8 process_version("chrome_elf_resources") { | |
| 9 source = "//chrome/app/chrome_version.rc.version" | |
| 10 output = "$target_gen_dir/chrome_elf_version.rc" | |
| 11 extra_args = [ | |
| 12 "-f", | |
| 13 rebase_path("chrome_elf.ver"), | |
| 14 ] | |
| 15 } | |
| 16 | |
| 17 shared_library("chrome_elf") { | |
| 18 sources = [ | |
| 19 "chrome_elf_main.cc", | |
| 20 "chrome_elf_main.h", | |
| 21 "$target_gen_dir/chrome_elf_version.rc", | |
| 22 ] | |
| 23 deps = [ | |
| 24 ":blacklist", | |
| 25 ":breakpad", | |
| 26 ":lib", | |
| 27 ":chrome_elf_resources", | |
| 28 ] | |
| 29 configs += [ "//build/config/win:windowed" ] | |
| 30 configs -= [ "//build/config/win:console" ] | |
| 31 ldflags = [ | |
| 32 "/NODEFAULTLIB:user32.lib", | |
| 33 "/DEF:" + rebase_path("chrome_elf.def"), | |
| 34 ] | |
| 35 if (cpu_arch == "x86") { | |
| 36 # Don"t set an x64 base address (to avoid breaking HE-ASLR). | |
| 37 ldflags += [ "/BASE:0x01c20000" ] | |
| 38 } | |
| 39 } | |
| 40 | |
| 41 source_set("lib") { | |
| 42 sources = [ | |
| 43 "create_file/chrome_create_file.cc", | |
| 44 "create_file/chrome_create_file.h", | |
| 45 "ntdll_cache.cc", | |
| 46 "ntdll_cache.h", | |
| 47 ] | |
| 48 deps = [ | |
| 49 ":common", | |
| 50 "//base:base_static", | |
| 51 "//sandbox", | |
| 52 ] | |
| 53 } | |
| 54 | |
| 55 source_set("constants") { | |
| 56 sources = [ | |
| 57 "chrome_elf_constants.cc", | |
| 58 "chrome_elf_constants.h", | |
| 59 ] | |
| 60 } | |
| 61 | |
| 62 source_set("common") { | |
| 63 deps = [ | |
| 64 ":constants", | |
| 65 ] | |
| 66 sources = [ | |
| 67 "chrome_elf_types.h", | |
| 68 "chrome_elf_util.cc", | |
| 69 "chrome_elf_util.h", | |
| 70 "thunk_getter.cc", | |
| 71 "thunk_getter.h", | |
| 72 ] | |
| 73 } | |
| 74 | |
| 75 source_set("breakpad") { | |
| 76 include_dirs = [ "$target_gen_dir" ] | |
| 77 sources = [ | |
| 78 "breakpad.cc", | |
| 79 "breakpad.h", | |
| 80 ] | |
| 81 deps = [ | |
| 82 ":common", | |
| 83 "//breakpad:breakpad_handler", | |
| 84 "//chrome:version_header", | |
| 85 ] | |
| 86 } | |
| 87 | |
| 88 if (is_component_build) { | |
| 89 shared_library("chrome_redirects") { | |
| 90 sources = [ | |
| 91 "chrome_redirects_main.cc", | |
| 92 ] | |
| 93 deps = [ | |
| 94 ":lib", | |
| 95 ] | |
| 96 configs += [ "//build/config/win:windowed" ] | |
| 97 ldflags = [ "/DEF:" + rebase_path("chrome_redirects.def") ] | |
| 98 | |
| 99 if (cpu_arch == "x86") { | |
| 100 # Don't set an x64 base address (to avoid breaking HE-ASLR). | |
| 101 ldflags += [ "/BASE:0x01c20000" ] | |
| 102 } | |
| 103 } | |
| 104 } | |
| 105 | |
| 106 source_set("dll_hash") { | |
| 107 deps = [ | |
| 108 "//base", | |
| 109 ] | |
| 110 sources = [ | |
| 111 "dll_hash/dll_hash.cc", | |
| 112 "dll_hash/dll_hash.h", | |
| 113 ] | |
| 114 } | |
| 115 | |
| 116 executable("dll_hash_main") { | |
| 117 deps = [ | |
| 118 ":dll_hash", | |
| 119 ] | |
| 120 sources = [ | |
| 121 "dll_hash/dll_hash_main.cc", | |
| 122 ] | |
| 123 } | |
| 124 | |
| 125 static_library("blacklist") { | |
| 126 sources = [ | |
| 127 "blacklist/blacklist.cc", | |
| 128 "blacklist/blacklist.h", | |
| 129 "blacklist/blacklist_interceptions.cc", | |
| 130 "blacklist/blacklist_interceptions.h", | |
| 131 ] | |
| 132 deps = [ | |
| 133 # Depend on base_static, but do NOT take a dependency on base.gyp:base | |
| 134 # as that would risk pulling in base's link-time dependencies which | |
| 135 # chrome_elf cannot do. | |
| 136 "//base:base_static", | |
|
brettw
2015/01/22 22:17:48
But this above "//sandbox" for sorting purposes.
Slava Chigrin
2015/01/23 09:59:46
Done.
| |
| 137 ":breakpad", | |
| 138 ":constants", | |
| 139 "//sandbox:sandbox", | |
| 140 ] | |
| 141 } | |
| 142 | |
| 143 test("chrome_elf_unittests") { | |
| 144 output_name = "chrome_elf_unittests" | |
| 145 sources = [ | |
| 146 "blacklist/test/blacklist_test.cc", | |
| 147 "chrome_elf_util_unittest.cc", | |
| 148 "create_file/chrome_create_file_unittest.cc", | |
| 149 "elf_imports_unittest.cc", | |
| 150 "ntdll_cache_unittest.cc", | |
| 151 ] | |
| 152 include_dirs = [ "$target_gen_dir" ] | |
| 153 deps = [ | |
| 154 ":lib", | |
| 155 "//base", | |
| 156 "//base/test:run_all_unittests", | |
| 157 "//base/test:test_support", | |
| 158 "//sandbox", | |
| 159 "//testing/gtest", | |
| 160 ":blacklist", | |
|
brettw
2015/01/22 22:17:48
Move these two :blacklist ones to the top.
Slava Chigrin
2015/01/23 09:59:46
Done.
| |
| 161 ":blacklist_test_main_dll", | |
| 162 ] | |
| 163 data_deps = [ | |
| 164 ":blacklist_test_dll_1", | |
| 165 ":blacklist_test_dll_2", | |
| 166 ":blacklist_test_dll_3", | |
| 167 "//chrome", | |
|
brettw
2015/01/22 22:17:48
At bottom.
Slava Chigrin
2015/01/23 09:59:46
Done.
| |
| 168 ":chrome_elf", | |
| 169 ] | |
| 170 } | |
| 171 | |
| 172 shared_library("blacklist_test_main_dll") { | |
| 173 sources = [ | |
| 174 "blacklist/test/blacklist_test_main_dll.cc", | |
| 175 ] | |
| 176 deps = [ | |
| 177 "//base", | |
| 178 ":blacklist", | |
| 179 ] | |
| 180 ldflags = | |
| 181 [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_main_dll.def", | |
| 182 root_build_dir) ] | |
| 183 } | |
| 184 | |
| 185 shared_library("blacklist_test_dll_1") { | |
| 186 sources = [ | |
| 187 "blacklist/test/blacklist_test_dll_1.cc", | |
| 188 ] | |
| 189 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_1.def", | |
| 190 root_build_dir) ] | |
| 191 } | |
| 192 | |
| 193 shared_library("blacklist_test_dll_2") { | |
| 194 sources = [ | |
| 195 "blacklist/test/blacklist_test_dll_2.cc", | |
| 196 ] | |
| 197 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", | |
| 198 root_build_dir) ] | |
| 199 } | |
| 200 | |
| 201 shared_library("blacklist_test_dll_3") { | |
| 202 sources = [ | |
| 203 "blacklist/test/blacklist_test_dll_3.cc", | |
| 204 ] | |
| 205 } | |
| OLD | NEW |