| OLD | NEW |
| 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2016 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/util/process_version_rc_template.gni") |
| 7 import("//build/win/message_compiler.gni") | 8 import("//build/win/message_compiler.gni") |
| 8 import("//chrome/process_version_rc_template.gni") | |
| 9 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| 11 # Indicates if the handle verifier should operate in a single module mode. By | 11 # Indicates if the handle verifier should operate in a single module mode. By |
| 12 # default a single instance gets shared by all the modules. | 12 # default a single instance gets shared by all the modules. |
| 13 single_module_mode_handle_verifier = false | 13 single_module_mode_handle_verifier = false |
| 14 } | 14 } |
| 15 | 15 |
| 16 # Ensure that the handle verifier is always used in a single module mode for the | 16 # Ensure that the handle verifier is always used in a single module mode for the |
| 17 # component builds. | 17 # component builds. |
| 18 if (is_component_build) { | 18 if (is_component_build) { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "//base/win:eventlog_provider_dll_version", | 61 "//base/win:eventlog_provider_dll_version", |
| 62 ] | 62 ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 static_library("pe_image") { | 65 static_library("pe_image") { |
| 66 sources = [ | 66 sources = [ |
| 67 "pe_image.cc", | 67 "pe_image.cc", |
| 68 "pe_image.h", | 68 "pe_image.h", |
| 69 ] | 69 ] |
| 70 } | 70 } |
| OLD | NEW |