| 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 # Chrome elf targets (excepting tests) should only link in kernel32. | 5 # Chrome elf targets (excepting tests) should only link in kernel32. |
| 6 # Please don't add dependencies on any other system libraries. | 6 # Please don't add dependencies on any other system libraries. |
| 7 | 7 |
| 8 import("//build/config/compiler/compiler.gni") | 8 import("//build/config/compiler/compiler.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//chrome/process_version_rc_template.gni") | 10 import("//chrome/process_version_rc_template.gni") |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 ##------------------------------------------------------------------------------ | 72 ##------------------------------------------------------------------------------ |
| 73 | 73 |
| 74 source_set("security") { | 74 source_set("security") { |
| 75 sources = [ | 75 sources = [ |
| 76 "chrome_elf_security.cc", | 76 "chrome_elf_security.cc", |
| 77 "chrome_elf_security.h", | 77 "chrome_elf_security.h", |
| 78 ] | 78 ] |
| 79 deps = [ | 79 deps = [ |
| 80 ":constants", | 80 ":constants", |
| 81 ":nt_registry", | 81 ":nt_registry", |
| 82 "//chrome/install_static:install_static_util", |
| 82 ] | 83 ] |
| 83 } | 84 } |
| 84 | 85 |
| 85 source_set("constants") { | 86 source_set("constants") { |
| 86 sources = [ | 87 sources = [ |
| 87 "chrome_elf_constants.cc", | 88 "chrome_elf_constants.cc", |
| 88 "chrome_elf_constants.h", | 89 "chrome_elf_constants.h", |
| 89 ] | 90 ] |
| 90 } | 91 } |
| 91 | 92 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 ":crash", | 209 ":crash", |
| 209 ":hook_util", | 210 ":hook_util", |
| 210 ":hook_util_test_dll", | 211 ":hook_util_test_dll", |
| 211 ":nt_registry", | 212 ":nt_registry", |
| 212 ":security", | 213 ":security", |
| 213 "//base", | 214 "//base", |
| 214 "//base/test:test_support", | 215 "//base/test:test_support", |
| 215 "//chrome", | 216 "//chrome", |
| 216 "//chrome/common:version_header", | 217 "//chrome/common:version_header", |
| 217 "//chrome/install_static:install_static_util", | 218 "//chrome/install_static:install_static_util", |
| 219 "//chrome/install_static/test:test_support", |
| 218 "//sandbox", | 220 "//sandbox", |
| 219 "//testing/gtest", | 221 "//testing/gtest", |
| 220 ] | 222 ] |
| 221 | 223 |
| 222 # It's not easily possible to have //chrome in data_deps without changing | 224 # It's not easily possible to have //chrome in data_deps without changing |
| 223 # the //chrome target to bundle up both initial/chrome.exe and chrome.exe. | 225 # the //chrome target to bundle up both initial/chrome.exe and chrome.exe. |
| 224 # As a workaround, explicitly include a data dep on just chrome.exe, and | 226 # As a workaround, explicitly include a data dep on just chrome.exe, and |
| 225 # add //chrome to deps above to make sure it's been built. | 227 # add //chrome to deps above to make sure it's been built. |
| 226 data = [ | 228 data = [ |
| 227 "$root_out_dir/chrome.exe", | 229 "$root_out_dir/chrome.exe", |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 shared_library("hook_util_test_dll") { | 301 shared_library("hook_util_test_dll") { |
| 300 testonly = true | 302 testonly = true |
| 301 sources = [ | 303 sources = [ |
| 302 "hook_util/test/hook_util_test_dll.cc", | 304 "hook_util/test/hook_util_test_dll.cc", |
| 303 "hook_util/test/hook_util_test_dll.h", | 305 "hook_util/test/hook_util_test_dll.h", |
| 304 ] | 306 ] |
| 305 deps = [ | 307 deps = [ |
| 306 "//build/config/sanitizers:deps", | 308 "//build/config/sanitizers:deps", |
| 307 ] | 309 ] |
| 308 } | 310 } |
| OLD | NEW |