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 10 matching lines...) Expand all Loading... |
21 'irt_dyncode.c', | 21 'irt_dyncode.c', |
22 'irt_thread.c', | 22 'irt_thread.c', |
23 'irt_mutex.c', | 23 'irt_mutex.c', |
24 'irt_cond.c', | 24 'irt_cond.c', |
25 'irt_sem.c', | 25 'irt_sem.c', |
26 'irt_tls.c', | 26 'irt_tls.c', |
27 'irt_blockhook.c', | 27 'irt_blockhook.c', |
28 'irt_clock.c', | 28 'irt_clock.c', |
29 'irt_dev_getpid.c', | 29 'irt_dev_getpid.c', |
30 'irt_dev_exception_handling.c', | 30 'irt_dev_exception_handling.c', |
| 31 'irt_dev_mprotect.c', |
31 'irt_nameservice.c', | 32 'irt_nameservice.c', |
32 'irt_random.c', | 33 'irt_random.c', |
33 # support_srcs | 34 # support_srcs |
34 # We also get nc_init_private.c, nc_thread.c and nc_tsd.c via | 35 # We also get nc_init_private.c, nc_thread.c and nc_tsd.c via |
35 # #includes of .c files. | 36 # #includes of .c files. |
36 '../pthread/nc_mutex.c', | 37 '../pthread/nc_mutex.c', |
37 '../pthread/nc_condvar.c', | 38 '../pthread/nc_condvar.c', |
38 '../pthread/nc_token.c', | 39 '../pthread/nc_token.c', |
39 '../nacl/sys_private.c', | 40 '../nacl/sys_private.c', |
40 '../valgrind/dynamic_annotations.c', | 41 '../valgrind/dynamic_annotations.c', |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 ], | 120 ], |
120 }], | 121 }], |
121 ], | 122 ], |
122 'dependencies': [ | 123 'dependencies': [ |
123 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 124 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
124 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', | 125 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', |
125 ], | 126 ], |
126 }, | 127 }, |
127 ], | 128 ], |
128 } | 129 } |
OLD | NEW |