| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'irt_sources': [ | 10 'irt_sources': [ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'irt_mutex.c', | 27 'irt_mutex.c', |
| 28 'irt_cond.c', | 28 'irt_cond.c', |
| 29 'irt_sem.c', | 29 'irt_sem.c', |
| 30 'irt_tls.c', | 30 'irt_tls.c', |
| 31 'irt_blockhook.c', | 31 'irt_blockhook.c', |
| 32 'irt_clock.c', | 32 'irt_clock.c', |
| 33 'irt_dev_getpid.c', | 33 'irt_dev_getpid.c', |
| 34 'irt_exception_handling.c', | 34 'irt_exception_handling.c', |
| 35 'irt_dev_list_mappings.c', | 35 'irt_dev_list_mappings.c', |
| 36 'irt_random.c', | 36 'irt_random.c', |
| 37 'irt_pnacl_translator.c', | 37 'irt_pnacl_translator_compile.c', |
| 38 'irt_pnacl_translator_link.c', |
| 38 # support_srcs | 39 # support_srcs |
| 39 # We also get nc_init_private.c, nc_thread.c and nc_tsd.c via | 40 # We also get nc_init_private.c, nc_thread.c and nc_tsd.c via |
| 40 # #includes of .c files. | 41 # #includes of .c files. |
| 41 '../pthread/nc_mutex.c', | 42 '../pthread/nc_mutex.c', |
| 42 '../pthread/nc_condvar.c', | 43 '../pthread/nc_condvar.c', |
| 43 '../nacl/sys_private.c', | 44 '../nacl/sys_private.c', |
| 44 '../valgrind/dynamic_annotations.c', | 45 '../valgrind/dynamic_annotations.c', |
| 45 ], | 46 ], |
| 46 'irt_nonbrowser': [ | 47 'irt_nonbrowser': [ |
| 47 'irt_core_resource.c', | 48 'irt_core_resource.c', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'build_irt': 1, | 91 'build_irt': 1, |
| 91 }, | 92 }, |
| 92 'sources': ['<@(irt_sources)'], | 93 'sources': ['<@(irt_sources)'], |
| 93 'dependencies': [ | 94 'dependencies': [ |
| 94 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 95 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 95 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', | 96 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', |
| 96 ], | 97 ], |
| 97 }, | 98 }, |
| 98 ], | 99 ], |
| 99 } | 100 } |
| OLD | NEW |