OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2012 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 # This GYP file should be included for every target in Chromium that is built | |
6 # using the NaCl toolchain. | |
7 { | |
8 'includes': [ | |
9 '../native_client/build/untrusted.gypi', | |
10 ], | |
11 'target_defaults': { | |
12 'variables': { | |
13 'conditions': [ | |
14 ['target_arch=="arm"', { | |
15 'clang': 1, | |
DaleCurtis
2012/08/23 19:16:40
Slightly off topic: but I'd heard the clang arm cr
bbudge
2012/08/23 20:32:30
My understanding is that Clang is the only ARM com
| |
16 'defines': [ | |
17 # Disable ValGrind. The assembly code it generates causes the build | |
18 # to fail. | |
19 'NVALGRIND', | |
20 ], | |
21 'compile_flags': [ | |
22 # Disable C++ 11 extensions. Chrome's OVERRIDE macro will generate | |
23 # warnings that cause the build to fail. | |
24 '-Wno-c++11-extensions', | |
25 ], | |
26 }], | |
27 ], | |
28 }, | |
29 }, | |
30 } | |
OLD | NEW |