Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Side by Side Diff: base/win/BUILD.gn

Issue 1977833003: Add a buildflag to use the handle verifier in a per module mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch to a normal deps. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/base.gyp ('k') | base/win/scoped_handle.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/buildflag_header.gni")
6
7 declare_args() {
8 # Indicates if the handle verifier should operate in a single module mode. By
9 # default a single instance gets shared by all the modules.
10 single_module_mode_handle_verifier = false
11 }
12
13 if (is_component_build) {
14 single_module_mode_handle_verifier = true
Nico 2016/06/07 16:48:18 this means that if you explicitly set single_modul
Sébastien Marchand 2016/06/07 17:47:58 Yes, I'll add a comment.
15 }
16
17 buildflag_header("base_win_features") {
18 header = "base_features.h"
19 header_dir = "base/win"
20 flags = [ "SINGLE_MODULE_MODE_HANDLE_VERIFIER=single_module_mode_handle_verifi er" ]
21 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/win/scoped_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698