| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # | 2 # |
| 3 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 3 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 { | 7 { |
| 8 'variables': { | 8 'variables': { |
| 9 'common_sources': [ | 9 'common_sources': [ |
| 10 'nacl_check.c', | 10 'nacl_check.c', |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 'dependencies': [ | 171 'dependencies': [ |
| 172 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | 172 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
| 173 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', | 173 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', |
| 174 ], | 174 ], |
| 175 }, | 175 }, |
| 176 { | 176 { |
| 177 'target_name': 'platform_lib', | 177 'target_name': 'platform_lib', |
| 178 'type': 'none', | 178 'type': 'none', |
| 179 'variables': { | 179 'variables': { |
| 180 'nlib_target': 'libplatform.a', | 180 'nlib_target': 'libplatform.a', |
| 181 'nso_target': 'libplatform.so', |
| 181 'build_glibc': 1, | 182 'build_glibc': 1, |
| 182 'build_newlib': 1, | 183 'build_newlib': 1, |
| 183 'sources': [ | 184 'sources': [ |
| 184 'nacl_check.c', | 185 'nacl_check.c', |
| 185 'nacl_log.c', | 186 'nacl_log.c', |
| 186 'posix/condition_variable.c', | 187 'posix/condition_variable.c', |
| 187 'posix/lock.c', | 188 'posix/lock.c', |
| 188 'posix/nacl_exit.c', | 189 'posix/nacl_exit.c', |
| 189 'posix/nacl_thread_id.c', | 190 'posix/nacl_thread_id.c', |
| 190 'posix/nacl_threads.c', | 191 'posix/nacl_threads.c', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 ], | 228 ], |
| 228 'dependencies': [ | 229 'dependencies': [ |
| 229 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, | 230 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, |
| 230 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', | 231 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', |
| 231 ], | 232 ], |
| 232 }, | 233 }, |
| 233 ], | 234 ], |
| 234 }], | 235 }], |
| 235 ], | 236 ], |
| 236 } | 237 } |
| OLD | NEW |