| 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 30 matching lines...) Expand all Loading... |
| 41 'linux/nacl_clock.c', | 41 'linux/nacl_clock.c', |
| 42 'linux/nacl_host_dir.c', | 42 'linux/nacl_host_dir.c', |
| 43 'linux/nacl_semaphore.c', | 43 'linux/nacl_semaphore.c', |
| 44 ], | 44 ], |
| 45 }], | 45 }], |
| 46 ['OS=="mac"', { | 46 ['OS=="mac"', { |
| 47 'platform_sources': [ | 47 'platform_sources': [ |
| 48 'osx/nacl_clock.c', | 48 'osx/nacl_clock.c', |
| 49 'osx/nacl_host_dir.c', | 49 'osx/nacl_host_dir.c', |
| 50 'osx/nacl_semaphore.c', | 50 'osx/nacl_semaphore.c', |
| 51 'osx/strnlen_osx.c', | |
| 52 ], | 51 ], |
| 53 }], | 52 }], |
| 54 ['os_posix==1', { | 53 ['os_posix==1', { |
| 55 'platform_sources': [ | 54 'platform_sources': [ |
| 56 'posix/aligned_malloc.c', | 55 'posix/aligned_malloc.c', |
| 57 'posix/condition_variable.c', | 56 'posix/condition_variable.c', |
| 58 'posix/lock.c', | 57 'posix/lock.c', |
| 59 'posix/nacl_error.c', | 58 'posix/nacl_error.c', |
| 60 'posix/nacl_exit.c', | 59 'posix/nacl_exit.c', |
| 61 'posix/nacl_fast_mutex.c', | 60 'posix/nacl_fast_mutex.c', |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 ], | 209 ], |
| 211 'dependencies': [ | 210 'dependencies': [ |
| 212 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, | 211 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64'
, |
| 213 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', | 212 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', |
| 214 ], | 213 ], |
| 215 }, | 214 }, |
| 216 ], | 215 ], |
| 217 }], | 216 }], |
| 218 ], | 217 ], |
| 219 } | 218 } |
| OLD | NEW |