Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Side by Side Diff: src/trusted/desc/build.scons

Issue 550523002: Remove the old "SecureRandom" service, formerly used by get_random_bytes() (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/trusted/desc/BUILD.gn ('k') | src/trusted/desc/desc.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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()
OLDNEW
« no previous file with comments | « src/trusted/desc/BUILD.gn ('k') | src/trusted/desc/desc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698