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

Side by Side Diff: build/common_untrusted.gypi

Issue 10871009: Make NaCl IPC-based PPAPI proxy build on ARM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « base/base_untrusted.gyp ('k') | chrome/nacl.gypi » ('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) 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,
16 'defines': [
17 # Needed by build/build_config.h processor architecture detection.
18 '__ARMEL__',
19 # Needed by base/third_party/nspr/prtime.cc.
20 '__arm__',
21 # Disable ValGrind. The assembly code it generates causes the build
22 # to fail.
23 'NVALGRIND',
24 ],
25 }],
26 ],
27 },
28 },
29 }
OLDNEW
« no previous file with comments | « base/base_untrusted.gyp ('k') | chrome/nacl.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698