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

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

Issue 14876015: Add wrapper library for the nacl_irt_exception_handling IRT interface (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Cleanup + remove minidump_generator.gyp for now because of pthread.h problem in Gyp build Created 7 years, 7 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/minidump_generator/minidump_generator.cc ('k') | src/untrusted/nacl/nacl.scons » ('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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 'nlib_target': 'libnacl_dyncode_private.a', 136 'nlib_target': 'libnacl_dyncode_private.a',
137 'build_glibc': 0, 137 'build_glibc': 0,
138 'build_newlib': 1, 138 'build_newlib': 1,
139 }, 139 },
140 'sources': ['dyncode_private.c'], 140 'sources': ['dyncode_private.c'],
141 'dependencies': [ 141 'dependencies': [
142 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 142 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
143 ], 143 ],
144 }, 144 },
145 { 145 {
146 'target_name': 'nacl_exception_lib',
147 'type': 'none',
148 'variables': {
149 'nlib_target': 'libnacl_exception.a',
150 'nso_target': 'libnacl_exception.so',
151 'build_glibc': 1,
152 'build_newlib': 1,
153 'build_pnacl_newlib': 1,
154 },
155 'sources': ['nacl_exception.c'],
156 'dependencies': [
157 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
158 ],
159 },
160 {
146 'target_name': 'nacl_list_mappings_lib', 161 'target_name': 'nacl_list_mappings_lib',
147 'type': 'none', 162 'type': 'none',
148 'variables': { 163 'variables': {
149 'nlib_target': 'libnacl_list_mappings.a', 164 'nlib_target': 'libnacl_list_mappings.a',
150 'nso_target': 'libnacl_list_mappings.so', 165 'nso_target': 'libnacl_list_mappings.so',
151 'build_glibc': 1, 166 'build_glibc': 1,
152 'build_newlib': 1, 167 'build_newlib': 1,
153 }, 168 },
154 'sources': ['list_mappings.c'], 169 'sources': ['list_mappings.c'],
155 'dependencies': [ 170 'dependencies': [
(...skipping 22 matching lines...) Expand all
178 'build_glibc': 1, 193 'build_glibc': 1,
179 'build_newlib': 1, 194 'build_newlib': 1,
180 }, 195 },
181 'sources': ['<@(imc_syscalls)'], 196 'sources': ['<@(imc_syscalls)'],
182 'dependencies': [ 197 'dependencies': [
183 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', 198 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
184 ], 199 ],
185 }, 200 },
186 ], 201 ],
187 } 202 }
OLDNEW
« no previous file with comments | « src/untrusted/minidump_generator/minidump_generator.cc ('k') | src/untrusted/nacl/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698