| 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 28 matching lines...) Expand all Loading... |
| 39 ] | 39 ] |
| 40 deps = [ | 40 deps = [ |
| 41 ":blacklist", | 41 ":blacklist", |
| 42 ":chrome_elf_manifest", | 42 ":chrome_elf_manifest", |
| 43 ":chrome_elf_resources", | 43 ":chrome_elf_resources", |
| 44 ":constants", | 44 ":constants", |
| 45 ":crash", | 45 ":crash", |
| 46 ":hook_util", | 46 ":hook_util", |
| 47 ":nt_registry", | 47 ":nt_registry", |
| 48 ":security", | 48 ":security", |
| 49 "//base", |
| 49 "//build/config/sanitizers:deps", | 50 "//build/config/sanitizers:deps", |
| 50 "//chrome/install_static:install_static_util", | 51 "//chrome/install_static:install_static_util", |
| 51 ] | 52 ] |
| 52 configs += [ "//build/config/win:windowed" ] | 53 configs += [ "//build/config/win:windowed" ] |
| 53 configs -= [ "//build/config/win:console" ] | 54 configs -= [ "//build/config/win:console" ] |
| 54 | 55 |
| 55 # Turn on CFG for this project. | 56 # Turn on CFG for this project. |
| 56 configs += [ "//build/config/win:win_msvc_cfg" ] | 57 configs += [ "//build/config/win:win_msvc_cfg" ] |
| 57 | 58 |
| 58 # Delay loads in this list will prevent user32.dll | 59 # Delay loads in this list will prevent user32.dll |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 shared_library("hook_util_test_dll") { | 302 shared_library("hook_util_test_dll") { |
| 302 testonly = true | 303 testonly = true |
| 303 sources = [ | 304 sources = [ |
| 304 "hook_util/test/hook_util_test_dll.cc", | 305 "hook_util/test/hook_util_test_dll.cc", |
| 305 "hook_util/test/hook_util_test_dll.h", | 306 "hook_util/test/hook_util_test_dll.h", |
| 306 ] | 307 ] |
| 307 deps = [ | 308 deps = [ |
| 308 "//build/config/sanitizers:deps", | 309 "//build/config/sanitizers:deps", |
| 309 ] | 310 ] |
| 310 } | 311 } |
| OLD | NEW |