| 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 import("//build/config/win/manifest.gni") | 5 import("//build/config/win/manifest.gni") |
| 6 import("//chrome/version.gni") | 6 import("//chrome/version.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 process_version("chrome_elf_resources") { | 9 process_version("chrome_elf_resources") { |
| 10 template_file = chrome_version_rc_template | 10 template_file = chrome_version_rc_template |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 executable("dll_hash_main") { | 95 executable("dll_hash_main") { |
| 96 sources = [ | 96 sources = [ |
| 97 "dll_hash/dll_hash_main.cc", | 97 "dll_hash/dll_hash_main.cc", |
| 98 ] | 98 ] |
| 99 deps = [ | 99 deps = [ |
| 100 ":dll_hash", | 100 ":dll_hash", |
| 101 "//build/config/sanitizers:deps", | 101 "//build/config/sanitizers:deps", |
| 102 "//build/win:default_exe_manifest", |
| 102 ] | 103 ] |
| 103 } | 104 } |
| 104 | 105 |
| 105 static_library("blacklist") { | 106 static_library("blacklist") { |
| 106 sources = [ | 107 sources = [ |
| 107 "blacklist/blacklist.cc", | 108 "blacklist/blacklist.cc", |
| 108 "blacklist/blacklist.h", | 109 "blacklist/blacklist.h", |
| 109 "blacklist/blacklist_interceptions.cc", | 110 "blacklist/blacklist_interceptions.cc", |
| 110 "blacklist/blacklist_interceptions.h", | 111 "blacklist/blacklist_interceptions.h", |
| 111 ] | 112 ] |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 # which does), Ninja would get confused and always rebuild this target because | 199 # which does), Ninja would get confused and always rebuild this target because |
| 199 # it sees a declared output file but that file doesn't exist on disk. | 200 # it sees a declared output file but that file doesn't exist on disk. |
| 200 loadable_module("blacklist_test_dll_3") { | 201 loadable_module("blacklist_test_dll_3") { |
| 201 sources = [ | 202 sources = [ |
| 202 "blacklist/test/blacklist_test_dll_3.cc", | 203 "blacklist/test/blacklist_test_dll_3.cc", |
| 203 ] | 204 ] |
| 204 deps = [ | 205 deps = [ |
| 205 "//build/config/sanitizers:deps", | 206 "//build/config/sanitizers:deps", |
| 206 ] | 207 ] |
| 207 } | 208 } |
| OLD | NEW |