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

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

Issue 261683002: Make a NaClDesc ctor for creating descs from NaClFileInfo. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: make it posix file descriptor Created 6 years, 7 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/public/nacl_file_info.h ('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 3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file. 4 # be 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 17 matching lines...) Expand all
28 wrapper_env = env.Clone() 28 wrapper_env = env.Clone()
29 wrapper_env.FilterOut(CCFLAGS = ['-pedantic']) 29 wrapper_env.FilterOut(CCFLAGS = ['-pedantic'])
30 wrapper_obj = wrapper_env.DualObject('nacl_desc_wrapper.cc') 30 wrapper_obj = wrapper_env.DualObject('nacl_desc_wrapper.cc')
31 31
32 nrd_lib_inputs = [ 32 nrd_lib_inputs = [
33 'nacl_desc_base.c', 33 'nacl_desc_base.c',
34 'nacl_desc_cond.c', 34 'nacl_desc_cond.c',
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_imc.c', 39 'nacl_desc_imc.c',
39 'nacl_desc_imc_shm.c', 40 'nacl_desc_imc_shm.c',
40 'nacl_desc_invalid.c', 41 'nacl_desc_invalid.c',
41 'nacl_desc_io.c', 42 'nacl_desc_io.c',
42 'nacl_desc_mutex.c', 43 'nacl_desc_mutex.c',
43 'nacl_desc_null.c', 44 'nacl_desc_null.c',
44 'nacl_desc_rng.c', 45 'nacl_desc_rng.c',
45 'nacl_desc_quota.c', 46 'nacl_desc_quota.c',
46 'nacl_desc_quota_interface.c', 47 'nacl_desc_quota_interface.c',
47 'nacl_desc_semaphore.c', 48 'nacl_desc_semaphore.c',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 env.AddNodeToTestSuite(node, ['small_tests'], 122 env.AddNodeToTestSuite(node, ['small_tests'],
122 'run_nacl_desc_io_alloc_ctor_test') 123 'run_nacl_desc_io_alloc_ctor_test')
123 124
124 125
125 # TODO: add comment 126 # TODO: add comment
126 if env.Bit('windows'): 127 if env.Bit('windows'):
127 env.Append(LIBS = [ 'ws2_32', 'advapi32' ]) 128 env.Append(LIBS = [ 'ws2_32', 'advapi32' ])
128 129
129 env.EnsureRequiredBuildWarnings() 130 env.EnsureRequiredBuildWarnings()
130 nrd_xfer_env.EnsureRequiredBuildWarnings() 131 nrd_xfer_env.EnsureRequiredBuildWarnings()
OLDNEW
« no previous file with comments | « src/public/nacl_file_info.h ('k') | src/trusted/desc/desc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698