| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 ], | 101 ], |
| 102 'dependencies': [ | 102 'dependencies': [ |
| 103 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 103 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 104 ], | 104 ], |
| 105 }, | 105 }, |
| 106 { | 106 { |
| 107 'target_name': 'nacl_dynacode_lib', | 107 'target_name': 'nacl_dynacode_lib', |
| 108 'type': 'none', | 108 'type': 'none', |
| 109 'variables': { | 109 'variables': { |
| 110 'nlib_target': 'libnacl_dyncode.a', | 110 'nlib_target': 'libnacl_dyncode.a', |
| 111 'nso_target': 'libnacl_dyncode.so', |
| 111 'build_glibc': 1, | 112 'build_glibc': 1, |
| 112 'build_newlib': 1, | 113 'build_newlib': 1, |
| 113 }, | 114 }, |
| 114 'sources': ['dyncode.c'], | 115 'sources': ['dyncode.c'], |
| 115 'dependencies': [ | 116 'dependencies': [ |
| 116 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 117 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 117 ], | 118 ], |
| 118 }, | 119 }, |
| 119 { | 120 { |
| 120 'target_name': 'nacl_dynacode_private_lib', | 121 'target_name': 'nacl_dynacode_private_lib', |
| 121 'type': 'none', | 122 'type': 'none', |
| 122 'variables': { | 123 'variables': { |
| 123 'nlib_target': 'libnacl_dyncode_private.a', | 124 'nlib_target': 'libnacl_dyncode_private.a', |
| 124 'build_glibc': 0, | 125 'build_glibc': 0, |
| 125 'build_newlib': 1, | 126 'build_newlib': 1, |
| 126 }, | 127 }, |
| 127 'sources': ['dyncode_private.c'], | 128 'sources': ['dyncode_private.c'], |
| 128 'dependencies': [ | 129 'dependencies': [ |
| 129 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 130 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 130 ], | 131 ], |
| 131 }, | 132 }, |
| 132 { | 133 { |
| 133 'target_name': 'imc_syscalls_lib', | 134 'target_name': 'imc_syscalls_lib', |
| 134 'type': 'none', | 135 'type': 'none', |
| 135 'variables': { | 136 'variables': { |
| 136 'nlib_target': 'libimc_syscalls.a', | 137 'nlib_target': 'libimc_syscalls.a', |
| 138 'nso_target': 'libimc_syscalls.so', |
| 137 'build_glibc': 1, | 139 'build_glibc': 1, |
| 138 'build_newlib': 1, | 140 'build_newlib': 1, |
| 139 }, | 141 }, |
| 140 'sources': ['<@(imc_syscalls)'], | 142 'sources': ['<@(imc_syscalls)'], |
| 141 'dependencies': [ | 143 'dependencies': [ |
| 142 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 144 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 143 ], | 145 ], |
| 144 }, | 146 }, |
| 145 ], | 147 ], |
| 146 } | 148 } |
| OLD | NEW |