Chromium Code Reviews| 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 11 matching lines...) Expand all Loading... | |
| 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_exception_handling.c', | 29 'irt_dev_exception_handling.c', |
| 30 'irt_nameservice.c', | 30 'irt_nameservice.c', |
| 31 'irt_random.c', | 31 'irt_random.c', |
| 32 'irt_manifest.c', | |
|
Nick Bray (chromium)
2012/08/22 22:24:13
Alphabetize. Or not.
| |
| 32 # support_srcs | 33 # support_srcs |
| 33 # We also get nc_init_private.c, nc_thread.c and nc_tsd.c via | 34 # We also get nc_init_private.c, nc_thread.c and nc_tsd.c via |
| 34 # #includes of .c files. | 35 # #includes of .c files. |
| 35 '../pthread/nc_mutex.c', | 36 '../pthread/nc_mutex.c', |
| 36 '../pthread/nc_condvar.c', | 37 '../pthread/nc_condvar.c', |
| 37 '../pthread/nc_token.c', | 38 '../pthread/nc_token.c', |
| 38 '../nacl/sys_private.c', | 39 '../nacl/sys_private.c', |
| 39 '../valgrind/dynamic_annotations.c', | 40 '../valgrind/dynamic_annotations.c', |
| 40 ], | 41 ], |
| 41 'irt_nonbrowser': [ | 42 'irt_nonbrowser': [ |
| 42 'irt_interfaces.c', | 43 'irt_interfaces.c', |
| 43 'irt_core_entry.c', | 44 'irt_core_entry.c', |
| 44 'irt_core_resource.c', | |
| 45 ], | 45 ], |
| 46 'irt_browser': [ | 46 'irt_browser': [ |
| 47 'irt_interfaces_ppapi.c', | 47 'irt_interfaces_ppapi.c', |
| 48 'irt_entry_ppapi.c', | 48 'irt_entry_ppapi.c', |
| 49 'irt_ppapi.c', | 49 'irt_ppapi.c', |
| 50 'irt_manifest.c', | |
| 51 ], | 50 ], |
| 52 }, | 51 }, |
| 53 'targets': [ | 52 'targets': [ |
| 54 { | 53 { |
| 55 'target_name': 'irt_core_nexe', | 54 'target_name': 'irt_core_nexe', |
| 56 'type': 'none', | 55 'type': 'none', |
| 57 'variables': { | 56 'variables': { |
| 58 'nexe_target': 'irt_core', | 57 'nexe_target': 'irt_core', |
| 59 'build_glibc': 0, | 58 'build_glibc': 0, |
| 60 'build_newlib': 1, | 59 'build_newlib': 1, |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 121 ], | 120 ], |
| 122 }], | 121 }], |
| 123 ], | 122 ], |
| 124 'dependencies': [ | 123 'dependencies': [ |
| 125 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 124 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 126 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', | 125 '<(DEPTH)/native_client/src/untrusted/nacl/nacl.gyp:nacl_lib_newlib', |
| 127 ], | 126 ], |
| 128 }, | 127 }, |
| 129 ], | 128 ], |
| 130 } | 129 } |
| OLD | NEW |