OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |