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

Side by Side Diff: src/untrusted/nacl/nacl.gyp

Issue 24227003: [MIPS] Add support to gyp files to build Native Client inside of Chromium (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Upload again. Created 7 years, 2 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
« no previous file with comments | « src/trusted/validator_x86/validator_x86.gyp ('k') | tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'includes': [
7 '../../../build/common.gypi', 7 '../../../build/common.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'sources_for_standard_interfaces': [ 10 'sources_for_standard_interfaces': [
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 }, 130 },
131 131
132 'targets' : [ 132 'targets' : [
133 { 133 {
134 'target_name': 'nacl_lib', 134 'target_name': 'nacl_lib',
135 'type': 'none', 135 'type': 'none',
136 'dependencies': [ 136 'dependencies': [
137 'nacl_lib_newlib', 137 'nacl_lib_newlib',
138 ], 138 ],
139 'conditions': [ 139 'conditions': [
140 # NOTE: We do not support glibc on arm yet. 140 # NOTE: We do not support glibc on arm and mips yet.
141 ['target_arch!="arm"', { 141 ['target_arch!="arm" and target_arch!="mipsel"', {
142 'dependencies': [ 142 'dependencies': [
143 'nacl_lib_glibc' 143 'nacl_lib_glibc'
144 ] 144 ]
145 }], 145 }],
146 ], 146 ],
147 }, 147 },
148 148
149 { 149 {
150 'target_name': 'nacl_lib_glibc', 150 'target_name': 'nacl_lib_glibc',
151 'type': 'none', 151 'type': 'none',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 'build_newlib': 1, 283 'build_newlib': 1,
284 'build_irt': 1, 284 'build_irt': 1,
285 }, 285 },
286 'sources': ['<@(imc_syscalls)'], 286 'sources': ['<@(imc_syscalls)'],
287 'dependencies': [ 287 'dependencies': [
288 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 288 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
289 ], 289 ],
290 }, 290 },
291 ], 291 ],
292 } 292 }
OLDNEW
« no previous file with comments | « src/trusted/validator_x86/validator_x86.gyp ('k') | tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698