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

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: Created 7 years, 3 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) 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }, 127 },
128 128
129 'targets' : [ 129 'targets' : [
130 { 130 {
131 'target_name': 'nacl_lib', 131 'target_name': 'nacl_lib',
132 'type': 'none', 132 'type': 'none',
133 'dependencies': [ 133 'dependencies': [
134 'nacl_lib_newlib', 134 'nacl_lib_newlib',
135 ], 135 ],
136 'conditions': [ 136 'conditions': [
137 # NOTE: We do not support glibc on arm yet. 137 # NOTE: We do not support glibc on arm and mips yet.
138 ['target_arch!="arm"', { 138 ['target_arch!="arm" and target_arch!="mipsel"', {
139 'dependencies': [ 139 'dependencies': [
140 'nacl_lib_glibc' 140 'nacl_lib_glibc'
141 ] 141 ]
142 }], 142 }],
143 ], 143 ],
144 }, 144 },
145 145
146 { 146 {
147 'target_name': 'nacl_lib_glibc', 147 'target_name': 'nacl_lib_glibc',
148 'type': 'none', 148 'type': 'none',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 'build_newlib': 1, 280 'build_newlib': 1,
281 'build_irt': 1, 281 'build_irt': 1,
282 }, 282 },
283 'sources': ['<@(imc_syscalls)'], 283 'sources': ['<@(imc_syscalls)'],
284 'dependencies': [ 284 'dependencies': [
285 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 285 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
286 ], 286 ],
287 }, 287 },
288 ], 288 ],
289 } 289 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698