| 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 { | 6 { |
| 7 'includes': [ | 7 'includes': [ |
| 8 '../../../build/common.gypi', | 8 '../../../build/common.gypi', |
| 9 ], | 9 ], |
| 10 'variables': { | 10 'variables': { |
| 11 'common_sources': [ | 11 'common_sources': [ |
| 12 ], | 12 ], |
| 13 }, | 13 }, |
| 14 'targets' : [ | 14 'targets' : [ |
| 15 { | 15 { |
| 16 'target_name': 'nosys_lib', | 16 'target_name': 'nosys_lib', |
| 17 'type': 'none', | 17 'type': 'none', |
| 18 'variables': { | 18 'variables': { |
| 19 'nlib_target': 'libnosys.a', | 19 'nlib_target': 'libnosys.a', |
| 20 'build_glibc': 0, | 20 'build_glibc': 0, |
| 21 'build_newlib': 1, | 21 'build_newlib': 1, |
| 22 'build_pnacl_newlib': 1, |
| 22 }, | 23 }, |
| 23 'sources': [ | 24 'sources': [ |
| 24 'access.c', | 25 'access.c', |
| 25 'chdir.c', | 26 'chdir.c', |
| 26 'chmod.c', | 27 'chmod.c', |
| 27 'chown.c', | 28 'chown.c', |
| 28 'endpwent.c', | 29 'endpwent.c', |
| 29 'environ.c', | 30 'environ.c', |
| 30 'errno.c', | 31 'errno.c', |
| 31 '__errno.c', | 32 '__errno.c', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 'vfork.c', | 93 'vfork.c', |
| 93 'wait.c', | 94 'wait.c', |
| 94 'waitpid.c', | 95 'waitpid.c', |
| 95 ], | 96 ], |
| 96 'dependencies': [ | 97 'dependencies': [ |
| 97 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 98 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 98 ], | 99 ], |
| 99 }, | 100 }, |
| 100 ], | 101 ], |
| 101 } | 102 } |
| OLD | NEW |