| 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("//build/util/process_version_rc_template.gni") |
| 11 import("//testing/test.gni") | 11 import("//testing/test.gni") |
| 12 | 12 |
| 13 ##------------------------------------------------------------------------------ | 13 ##------------------------------------------------------------------------------ |
| 14 ## chrome_elf | 14 ## chrome_elf |
| 15 ##------------------------------------------------------------------------------ | 15 ##------------------------------------------------------------------------------ |
| 16 | 16 |
| 17 process_version_rc_template("chrome_elf_resources") { | 17 process_version_rc_template("chrome_elf_resources") { |
| 18 sources = [ | 18 sources = [ |
| 19 "chrome_elf.ver", | 19 "chrome_elf.ver", |
| 20 ] | 20 ] |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 shared_library("hook_util_test_dll") { | 303 shared_library("hook_util_test_dll") { |
| 304 testonly = true | 304 testonly = true |
| 305 sources = [ | 305 sources = [ |
| 306 "hook_util/test/hook_util_test_dll.cc", | 306 "hook_util/test/hook_util_test_dll.cc", |
| 307 "hook_util/test/hook_util_test_dll.h", | 307 "hook_util/test/hook_util_test_dll.h", |
| 308 ] | 308 ] |
| 309 deps = [ | 309 deps = [ |
| 310 "//build/config:exe_and_shlib_deps", | 310 "//build/config:exe_and_shlib_deps", |
| 311 ] | 311 ] |
| 312 } | 312 } |
| OLD | NEW |