Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'nacl_sys_private', | 11 'target_name': 'nacl_sys_private', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'variables': { | 13 'variables': { |
| 14 'nlib_target': 'libnacl_sys_private.a', | 14 'nlib_target': 'libnacl_sys_private.a', |
| 15 'build_glibc': 0, | 15 'build_glibc': 0, |
| 16 'build_newlib': 0, | 16 'build_newlib': 0, |
| 17 'build_irt': 0, | 17 'build_irt': 0, |
| 18 'build_pnacl_newlib': 0, | 18 'build_pnacl_newlib': 0, |
| 19 'build_nonsfi_helper': 1, | 19 'build_nonsfi_helper': 1, |
| 20 }, | 20 }, |
| 21 'sources': [ | 21 'sources': [ |
| 22 '../../untrusted/irt/irt_query_list.c', | 22 '../../untrusted/irt/irt_query_list.c', |
| 23 '../../untrusted/nacl/nacl_random.h', | |
|
Mark Seaborn
2014/11/04 01:19:52
You don't need to list headers in Gyp (especially
hidehiko
2014/11/04 11:16:58
Removed .h files from this list.
| |
| 23 '../../untrusted/pthread/nc_condvar.c', | 24 '../../untrusted/pthread/nc_condvar.c', |
| 24 '../../untrusted/pthread/nc_mutex.c', | 25 '../../untrusted/pthread/nc_mutex.c', |
| 25 '../../untrusted/pthread/nc_thread.c', | 26 '../../untrusted/pthread/nc_thread.c', |
| 26 '../../untrusted/pthread/stack_end.c', | 27 '../../untrusted/pthread/stack_end.c', |
| 27 '../../untrusted/valgrind/dynamic_annotations.c', | 28 '../../untrusted/valgrind/dynamic_annotations.c', |
| 28 '../linux/irt_exception_handling.c', | 29 '../linux/irt_exception_handling.c', |
| 29 '../linux/linux_futex.c', | 30 '../linux/linux_futex.c', |
| 30 '../linux/linux_pthread_private.c', | 31 '../linux/linux_pthread_private.c', |
| 31 '../linux/linux_sys_private.c', | 32 '../linux/linux_sys_private.c', |
| 32 'irt_interfaces.c', | 33 'irt_interfaces.c', |
| 33 'irt_interfaces.h', | 34 'irt_interfaces.h', |
| 35 'irt_random.c', | |
| 36 'irt_random.h', | |
| 34 ], | 37 ], |
| 35 'dependencies': [ | 38 'dependencies': [ |
| 36 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 39 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 37 ], | 40 ], |
| 38 }, | 41 }, |
| 39 ], | 42 ], |
| 40 } | 43 } |
| OLD | NEW |