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

Side by Side Diff: ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp

Issue 152133007: [MIPS] Support for MIPS PNaCl in PPAPI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 10 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'conditions': [
7 '../../../../../native_client/build/untrusted.gypi', 7 ['target_arch!="mipsel"', {
Mark Seaborn 2014/02/20 23:59:04 Why are you excluding the IRT shim on MIPS? This
8 ], 8 'includes': [
9 'targets': [ 9 '../../../../../native_client/build/untrusted.gypi',
10 { 10 ],
11 'target_name': 'pnacl_irt_shim', 11 'targets': [
12 'type': 'none', 12 {
13 'variables': { 13 'target_name': 'pnacl_irt_shim',
14 'nlib_target': 'libpnacl_irt_shim.a', 14 'type': 'none',
15 'out_pnacl_newlib_arm': '>(tc_lib_dir_pnacl_translate)/lib-arm/>(nlib_ta rget)', 15 'variables': {
16 'out_pnacl_newlib_x86_32': '>(tc_lib_dir_pnacl_translate)/lib-x86-32/>(n lib_target)', 16 'nlib_target': 'libpnacl_irt_shim.a',
17 'out_pnacl_newlib_x86_64': '>(tc_lib_dir_pnacl_translate)/lib-x86-64/>(n lib_target)', 17 'out_pnacl_newlib_arm': '>(tc_lib_dir_pnacl_translate)/lib-arm/>(nli b_target)',
18 'build_glibc': 0, 18 'out_pnacl_newlib_x86_32': '>(tc_lib_dir_pnacl_translate)/lib-x86-32 />(nlib_target)',
19 'build_newlib': 0, 19 'out_pnacl_newlib_x86_64': '>(tc_lib_dir_pnacl_translate)/lib-x86-64 />(nlib_target)',
20 'build_pnacl_newlib': 1, 20 'build_glibc': 0,
21 'pnacl_native_biased': 1, 21 'build_newlib': 0,
22 'enable_x86_32': 1, 22 'build_pnacl_newlib': 1,
23 'enable_x86_64': 1, 23 'pnacl_native_biased': 1,
24 'enable_arm': 1, 24 'enable_x86_32': 1,
25 'sources': [ 25 'enable_x86_64': 1,
26 'pnacl_shim.c', 26 'enable_arm': 1,
27 'shim_entry.c', 27 'sources': [
28 'shim_ppapi.c', 28 'pnacl_shim.c',
29 ], 29 'shim_entry.c',
30 'include_dirs': [ 30 'shim_ppapi.c',
31 '../../../..', 31 ],
32 ], 32 'include_dirs': [
33 'extra_args': [ 33 '../../../..',
34 '--strip-debug', 34 ],
35 ], 35 'extra_args': [
36 }, 36 '--strip-debug',
37 'dependencies': [ 37 ],
38 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 38 },
39 'dependencies': [
40 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
41 ],
42 },
39 ], 43 ],
40 }, 44 },
41 ], 45 {
46 'targets': [],
47 }],
48 ]
42 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698