| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2009 The Native Client Authors. All rights reserved. | 2 # Copyright 2009 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import os | 6 import os |
| 7 | 7 |
| 8 Import('env') | 8 Import('env') |
| 9 | 9 |
| 10 # nrd_xfer.c needs no-strict-aliasing because NaClImcMsgIoVec and | 10 # nrd_xfer.c needs no-strict-aliasing because NaClImcMsgIoVec and |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'nacl_desc_custom.c', | 35 'nacl_desc_custom.c', |
| 36 'nacl_desc_dir.c', | 36 'nacl_desc_dir.c', |
| 37 'nacl_desc_effector_trusted_mem.c', | 37 'nacl_desc_effector_trusted_mem.c', |
| 38 'nacl_desc_file_info.c', | 38 'nacl_desc_file_info.c', |
| 39 'nacl_desc_imc.c', | 39 'nacl_desc_imc.c', |
| 40 'nacl_desc_imc_shm.c', | 40 'nacl_desc_imc_shm.c', |
| 41 'nacl_desc_invalid.c', | 41 'nacl_desc_invalid.c', |
| 42 'nacl_desc_io.c', | 42 'nacl_desc_io.c', |
| 43 'nacl_desc_mutex.c', | 43 'nacl_desc_mutex.c', |
| 44 'nacl_desc_null.c', | 44 'nacl_desc_null.c', |
| 45 'nacl_desc_rng.c', | |
| 46 'nacl_desc_quota.c', | 45 'nacl_desc_quota.c', |
| 47 'nacl_desc_quota_interface.c', | 46 'nacl_desc_quota_interface.c', |
| 48 'nacl_desc_semaphore.c', | 47 'nacl_desc_semaphore.c', |
| 49 'nacl_desc_sync_socket.c', | 48 'nacl_desc_sync_socket.c', |
| 50 'nrd_all_modules.c', | 49 'nrd_all_modules.c', |
| 51 nrd_xfer_obj, | 50 nrd_xfer_obj, |
| 52 wrapper_obj, | 51 wrapper_obj, |
| 53 ] | 52 ] |
| 54 | 53 |
| 55 if env.Bit('windows'): | 54 if env.Bit('windows'): |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 env.AddNodeToTestSuite(node, ['small_tests'], | 118 env.AddNodeToTestSuite(node, ['small_tests'], |
| 120 'run_nacl_desc_io_alloc_ctor_test') | 119 'run_nacl_desc_io_alloc_ctor_test') |
| 121 | 120 |
| 122 | 121 |
| 123 # TODO: add comment | 122 # TODO: add comment |
| 124 if env.Bit('windows'): | 123 if env.Bit('windows'): |
| 125 env.Append(LIBS = [ 'ws2_32', 'advapi32' ]) | 124 env.Append(LIBS = [ 'ws2_32', 'advapi32' ]) |
| 126 | 125 |
| 127 env.EnsureRequiredBuildWarnings() | 126 env.EnsureRequiredBuildWarnings() |
| 128 nrd_xfer_env.EnsureRequiredBuildWarnings() | 127 nrd_xfer_env.EnsureRequiredBuildWarnings() |
| OLD | NEW |