Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
michael@0 | 1 | # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
michael@0 | 2 | # Use of this source code is governed by a BSD-style license that can be |
michael@0 | 3 | # found in the LICENSE file. |
michael@0 | 4 | |
michael@0 | 5 | # This GYP file should be included for every target in Chromium that is built |
michael@0 | 6 | # using the NaCl toolchain. |
michael@0 | 7 | { |
michael@0 | 8 | 'includes': [ |
michael@0 | 9 | '../native_client/build/untrusted.gypi', |
michael@0 | 10 | ], |
michael@0 | 11 | 'target_defaults': { |
michael@0 | 12 | 'conditions': [ |
michael@0 | 13 | ['target_arch=="arm"', { |
michael@0 | 14 | 'variables': { |
michael@0 | 15 | 'clang': 1, |
michael@0 | 16 | }, |
michael@0 | 17 | 'defines': [ |
michael@0 | 18 | # Needed by build/build_config.h processor architecture detection. |
michael@0 | 19 | '__ARMEL__', |
michael@0 | 20 | # Needed by base/third_party/nspr/prtime.cc. |
michael@0 | 21 | '__arm__', |
michael@0 | 22 | # Disable ValGrind. The assembly code it generates causes the build |
michael@0 | 23 | # to fail. |
michael@0 | 24 | 'NVALGRIND', |
michael@0 | 25 | ], |
michael@0 | 26 | }], |
michael@0 | 27 | ], |
michael@0 | 28 | }, |
michael@0 | 29 | } |