OLD | NEW |
---|---|
(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 enable_handle_verifier = true | |
Will Harris
2016/05/18 08:51:21
nit: needs a comment here for the gn help.
| |
9 } | |
10 | |
11 buildflag_header("base_win_features") { | |
12 header = "base_features.h" | |
13 header_dir = "base/win" | |
14 flags = [ "ENABLE_HANDLE_VERIFIER=enable_handle_verifier" ] | |
15 } | |
OLD | NEW |