| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |