blob: dd0f304e6a9a41827bda9351e8672ef46a29f9c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright (c) 2012 The Native Client Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
# These flags are only included in the NaCl standalone build.
# They won't get included when NaCl is built as part of another
# project, such as Chrome. We don't necessarily want to enable
# these flags for Chrome source that is built as NaCl untrusted
# code.
'nacl_default_compile_flags': [
'-Wundef',
],
},
}
|