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

Side by Side Diff: site_scons/site_tools/library_deps.py

Issue 10832400: Process abstraction layer for NaCl Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 8 years, 4 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
OLDNEW
1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2012 The Native Client 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 """Harness for defining library dependencies for scons files.""" 5 """Harness for defining library dependencies for scons files."""
6 6
7 7
8 # The following is a map from a library, to the corresponding 8 # The following is a map from a library, to the corresponding
9 # list of dependent libraries that must be included after that library, in 9 # list of dependent libraries that must be included after that library, in
10 # the list of libraries. 10 # the list of libraries.
(...skipping 11 matching lines...) Expand all
22 'nonnacl_srpc', 22 'nonnacl_srpc',
23 'nrd_xfer', 23 'nrd_xfer',
24 'nacl_perf_counter', 24 'nacl_perf_counter',
25 'nacl_base', 25 'nacl_base',
26 'imc', 26 'imc',
27 'container', 27 'container',
28 'nacl_fault_inject', 28 'nacl_fault_inject',
29 'nacl_interval', 29 'nacl_interval',
30 'platform', 30 'platform',
31 'platform_qual_lib', 31 'platform_qual_lib',
32 'nacl_platform',
Mark Seaborn 2012/08/21 17:53:03 Why add this dependency when the 'sel' library doe
Petr Hosek 2012/08/23 00:43:14 Removed.
32 'gio', 33 'gio',
33 'validators', 34 'validators',
34 ], 35 ],
35 'debug_stub': [ 36 'debug_stub': [
36 'sel', 37 'sel',
37 ], 38 ],
38 } 39 }
39 40
40 41
41 # Platform specific library dependencies. Mapping from a platform, 42 # Platform specific library dependencies. Mapping from a platform,
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 closure.append(library) 211 closure.append(library)
211 212
212 # Ideally we would just do "VisitList(libraries)" here, but some 213 # Ideally we would just do "VisitList(libraries)" here, but some
213 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp" 214 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp"
214 # twice in the link line, and we need to maintain these duplicates. 215 # twice in the link line, and we need to maintain these duplicates.
215 for library in reversed(libraries): 216 for library in reversed(libraries):
216 VisitLibrary(library) 217 VisitLibrary(library)
217 218
218 closure.reverse() 219 closure.reverse()
219 return closure 220 return closure
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/trusted/platform/build.scons » ('j') | src/trusted/platform/build.scons » ('J')

Powered by Google App Engine
This is Rietveld 408576698