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

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

Issue 15039022: Enable meta-based validation for shared libraries. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Style Created 7 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 | « no previous file | src/trusted/manifest_name_service_proxy/manifest_proxy.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 17 matching lines...) Expand all
28 'gio', 28 'gio',
29 ], 29 ],
30 'nacl_base': [ 30 'nacl_base': [
31 'platform', 31 'platform',
32 ], 32 ],
33 'nrd_xfer': [ 33 'nrd_xfer': [
34 'nacl_base', 34 'nacl_base',
35 'imc', 35 'imc',
36 'platform', 36 'platform',
37 ], 37 ],
38 'reverse_service': [
39 'validation_cache',
40 ],
38 'sel': [ 41 'sel': [
39 'nacl_error_code', 42 'nacl_error_code',
40 'env_cleanser', 43 'env_cleanser',
41 'manifest_proxy', 44 'manifest_proxy',
42 'simple_service', 45 'simple_service',
43 'thread_interface', 46 'thread_interface',
44 'gio_wrapped_desc', 47 'gio_wrapped_desc',
45 'nonnacl_srpc', 48 'nonnacl_srpc',
46 'nrd_xfer', 49 'nrd_xfer',
47 'nacl_perf_counter', 50 'nacl_perf_counter',
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 closure.append(library) 272 closure.append(library)
270 273
271 # Ideally we would just do "VisitList(libraries)" here, but some 274 # Ideally we would just do "VisitList(libraries)" here, but some
272 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp" 275 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp"
273 # twice in the link line, and we need to maintain these duplicates. 276 # twice in the link line, and we need to maintain these duplicates.
274 for library in reversed(libraries): 277 for library in reversed(libraries):
275 VisitLibrary(library) 278 VisitLibrary(library)
276 279
277 closure.reverse() 280 closure.reverse()
278 return closure 281 return closure
OLDNEW
« no previous file with comments | « no previous file | src/trusted/manifest_name_service_proxy/manifest_proxy.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698