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

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

Issue 9816003: GYP build for ARM untrusted runtime. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 8 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 | « src/untrusted/nacl/nacl.gyp ('k') | src/untrusted/pthread/pthread.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 { 6 {
7 'includes': [ 7 'includes': [
8 '../../../build/common.gypi', 8 '../../../build/common.gypi',
9 ], 9 ],
10 'variables': { 10 'variables': {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'ttyname_r.c', 74 'ttyname_r.c',
75 'umask.c', 75 'umask.c',
76 'unlink.c', 76 'unlink.c',
77 'utime.c', 77 'utime.c',
78 'utimes.c', 78 'utimes.c',
79 'vfork.c', 79 'vfork.c',
80 'wait.c', 80 'wait.c',
81 'waitpid.c', 81 'waitpid.c',
82 ], 82 ],
83 }, 83 },
84 'conditions': [ 84 'targets' : [
85 # NOTE: We do not support untrusted gyp build on arm yet. 85 {
86 ['target_arch!="arm"', { 86 'target_name': 'nosys_lib',
87 'targets' : [ 87 'type': 'none',
88 { 88 'variables': {
89 'target_name': 'nosys_lib', 89 'nlib_target': 'libnosys.a',
90 'type': 'none', 90 'build_glibc': 0,
91 'variables': { 91 'build_newlib': 1,
92 'nlib_target': 'libnosys.a', 92 'sources': ['<@(common_sources)']
93 'build_glibc': 0, 93 },
94 'build_newlib': 1, 94 'dependencies': [
95 'sources': ['<@(common_sources)'] 95 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
96 },
97 'dependencies': [
98 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
99 ],
100 },
101 ], 96 ],
102 }], 97 },
103 ], 98 ],
104 } 99 }
OLDNEW
« no previous file with comments | « src/untrusted/nacl/nacl.gyp ('k') | src/untrusted/pthread/pthread.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698