1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
|
# Copyright 2015 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Chrome elf targets (excepting tests) should only link in kernel32.
# Please don't add dependencies on any other system libraries.
import("//build/config/compiler/compiler.gni")
import("//build/config/win/manifest.gni")
import("//chrome/process_version_rc_template.gni")
import("//testing/test.gni")
##------------------------------------------------------------------------------
## chrome_elf
##------------------------------------------------------------------------------
process_version_rc_template("chrome_elf_resources") {
sources = [ "chrome_elf.ver" ]
output = "$target_gen_dir/chrome_elf_version.rc"
}
# This manifest matches what GYP produces. It may not even be necessary.
windows_manifest("chrome_elf_manifest") {
sources = [ as_invoker_manifest ]
}
# Users of chrome_elf exports can depend on this target, which doesn't
# pin them to linking either chrome_elf.dll or test_stubs.
source_set("chrome_elf_main_include") {
sources = [ "chrome_elf_main.h" ]
}
# For code that isn't Chrome-the browser, like test binaries, these stubs stand
# in for chrome_elf.;
static_library("test_stubs") {
testonly = true
sources = [
"chrome_elf_main.h",
"chrome_elf_test_stubs.cc",
]
deps = [
":sha1",
":third_party_shared_defines",
"//base",
"//chrome/common:constants",
]
}
# We should move chrome_result_codes.h to another target which does not bring
# in the world.
shared_library("chrome_elf") {
sources = [
"chrome_elf.def",
"chrome_elf_main.cc",
"chrome_elf_main.h",
]
deps = [
":chrome_elf_manifest",
":chrome_elf_resources",
":constants",
":crash",
":nt_registry",
":security",
":third_party_dlls",
"//chrome/install_static:install_static_util",
"//chrome/install_static:primary_module",
"//components/crash/core/app:crash_export_thunks",
"//sandbox/policy:win_hook_util",
]
configs += [ "//build/config/win:windowed" ]
configs -= [ "//build/config/win:console" ]
configs += [
"//build/config/win:delayloads",
"//build/config/win:delayloads_not_for_child_dll",
]
if (current_cpu == "x86") {
# Don"t set an x64 base address (to avoid breaking HE-ASLR).
ldflags = [ "/BASE:0x01c20000" ]
}
}
##------------------------------------------------------------------------------
## chrome_elf sub targets
##------------------------------------------------------------------------------
source_set("constants") {
sources = [
"blocklist_constants.cc",
"blocklist_constants.h",
"chrome_elf_constants.cc",
"chrome_elf_constants.h",
]
}
static_library("crash") {
sources = [
"../app/chrome_crash_reporter_client_win.cc",
"../app/chrome_crash_reporter_client_win.h",
"../common/chrome_result_codes.h",
"crash/crash_helper.cc",
"crash/crash_helper.h",
]
deps = [
":constants",
"//base", # This needs to go. DEP of app, crash_keys, client.
"//base:base_static", # pe_image
"//chrome/install_static:install_static_util",
"//components/crash/core/app",
"//components/crash/core/common", # crash_keys
"//components/version_info:channel",
"//content/public/common:result_codes",
"//sandbox/policy:win_hook_util",
"//third_party/crashpad/crashpad/client", # DumpWithoutCrash
]
}
source_set("dll_hash") {
deps = [ "//base" ]
sources = [
"dll_hash/dll_hash.cc",
"dll_hash/dll_hash.h",
]
}
executable("dll_hash_main") {
sources = [ "dll_hash/dll_hash_main.cc" ]
deps = [
":dll_hash",
"//build/win:default_exe_manifest",
]
}
# This target contains utility functions which must only depend on
# kernel32 or ntdll. Please don't add dependencies on other system libraries.
static_library("nt_registry") {
sources = [
"nt_registry/nt_registry.cc",
"nt_registry/nt_registry.h",
"nt_registry/nt_registry_functions.h",
]
libs = [
"kernel32.lib",
"ntdll.lib",
]
}
source_set("pe_image_safe") {
sources = [
"pe_image_safe/pe_image_safe.cc",
"pe_image_safe/pe_image_safe.h",
]
}
source_set("security") {
sources = [
"chrome_elf_security.cc",
"chrome_elf_security.h",
]
deps = [
":constants",
":nt_registry",
"//base:base",
"//chrome/install_static:install_static_util",
]
}
source_set("sha1") {
sources = [
"sha1/sha1.cc",
"sha1/sha1.h",
]
}
source_set("third_party_dlls") {
visibility = [ ":*" ] # Only targets in this file can depend on this.
sources = [
"third_party_dlls/beacon.cc",
"third_party_dlls/beacon.h",
"third_party_dlls/hardcoded_blocklist.cc",
"third_party_dlls/hardcoded_blocklist.h",
"third_party_dlls/hook.cc",
"third_party_dlls/hook.h",
"third_party_dlls/logs.cc",
"third_party_dlls/logs.h",
"third_party_dlls/main.cc",
"third_party_dlls/main.h",
"third_party_dlls/packed_list_file.cc",
"third_party_dlls/packed_list_file.h",
]
deps = [
"//base:base_static",
"//sandbox/win:service_resolver",
]
public_deps = [
":constants",
":crash",
":nt_registry",
":pe_image_safe",
":sha1",
":third_party_shared_defines",
"//chrome/install_static:install_static_util",
"//sandbox/policy:win_hook_util",
]
}
# This source_set defines third-party-related structures and APIs used from
# outside chrome_elf.dll. The APIs are exported from chrome_elf (add a
# data_dep on //chrome/chrome_elf:chrome_elf), which will always be loaded
# before chrome.dll.
source_set("third_party_shared_defines") {
sources = [
"sha1/sha1.h",
"third_party_dlls/packed_list_format.cc",
"third_party_dlls/packed_list_format.h",
"third_party_dlls/public_api.cc",
"third_party_dlls/public_api.h",
"third_party_dlls/status_codes.cc",
"third_party_dlls/status_codes.h",
]
}
##------------------------------------------------------------------------------
## tests
##------------------------------------------------------------------------------
test("chrome_elf_unittests") {
output_name = "chrome_elf_unittests"
sources = [
"chrome_elf_util_unittest.cc",
"hook_util/test/hook_util_test.cc",
"nt_registry/nt_registry_unittest.cc",
"pe_image_safe/pe_image_safe_unittest.cc",
"run_all_unittests.cc",
"sha1/sha1_unittest.cc",
"third_party_dlls/beacon_unittest.cc",
"third_party_dlls/logs_unittest.cc",
"third_party_dlls/main_unittest.cc",
"third_party_dlls/main_unittest_exe.h",
"third_party_dlls/packed_list_file_unittest.cc",
]
include_dirs = [ "$target_gen_dir" ]
deps = [
":chrome_elf",
":constants",
":crash",
":hook_util_test_dll",
":nt_registry",
":pe_image_safe",
":security",
":sha1",
":third_party_dlls",
":third_party_shared_defines",
"//base",
"//base/test:test_support",
"//chrome/common:version_header",
"//chrome/install_static:install_static_util",
"//chrome/install_static/test:test_support",
"//components/crash/core/app:test_support",
"//sandbox/policy:win_hook_util",
"//testing/gtest",
]
data_deps = [
":chrome_elf",
":main_unittest_dll_1",
":main_unittest_dll_2",
":third_party_dlls_test_exe",
]
}
##------------------------------------------------------------------------------
## tests - data_deps
##------------------------------------------------------------------------------
shared_library("hook_util_test_dll") {
testonly = true
sources = [
"hook_util/test/hook_util_test_dll.cc",
"hook_util/test/hook_util_test_dll.h",
]
}
shared_library("main_unittest_dll_1") {
testonly = true
sources = [ "third_party_dlls/main_unittest_dll_1.cc" ]
# Disable sanitizer instrumentation in the test DLLs to avoid unwanted
# exports.
no_default_deps = true
configs -= [
"//build/config/sanitizers:default_sanitizer_flags",
"//build/config:shared_library_config",
]
}
shared_library("main_unittest_dll_2") {
testonly = true
sources = [
"third_party_dlls/main_unittest_dll_2.cc",
"third_party_dlls/main_unittest_dll_2.def",
]
# Disable sanitizer instrumentation in the test DLLs to avoid unwanted
# exports.
no_default_deps = true
configs -= [
"//build/config/sanitizers:default_sanitizer_flags",
"//build/config:shared_library_config",
]
}
executable("third_party_dlls_test_exe") {
testonly = true
sources = [
"third_party_dlls/main_unittest_exe.cc",
"third_party_dlls/main_unittest_exe.h",
]
deps = [
":third_party_dlls",
"//base",
"//base/test:test_support",
"//build/win:default_exe_manifest",
"//chrome/install_static:install_static_util",
"//components/crash/core/app:crash_export_stubs",
]
}
|