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

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

Issue 594733005: Cleanup: Remove src/trusted/gio/, since it is unused (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix Created 6 years, 2 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 | « SConstruct ('k') | src/BUILD.gn » ('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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'reverse_service': [ 44 'reverse_service': [
45 'validation_cache', 45 'validation_cache',
46 ], 46 ],
47 'sel': [ 47 'sel': [
48 'desc_cacheability', 48 'desc_cacheability',
49 'nacl_error_code', 49 'nacl_error_code',
50 'env_cleanser', 50 'env_cleanser',
51 'manifest_proxy', 51 'manifest_proxy',
52 'simple_service', 52 'simple_service',
53 'thread_interface', 53 'thread_interface',
54 'gio_wrapped_desc',
55 'nonnacl_srpc', 54 'nonnacl_srpc',
56 'nrd_xfer', 55 'nrd_xfer',
57 'nacl_perf_counter', 56 'nacl_perf_counter',
58 'nacl_base', 57 'nacl_base',
59 'imc', 58 'imc',
60 'nacl_fault_inject', 59 'nacl_fault_inject',
61 'nacl_interval', 60 'nacl_interval',
62 'platform', 61 'platform',
63 'platform_qual_lib', 62 'platform_qual_lib',
64 'gio', 63 'gio',
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 closure.append(library) 285 closure.append(library)
287 286
288 # Ideally we would just do "VisitList(libraries)" here, but some 287 # Ideally we would just do "VisitList(libraries)" here, but some
289 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp" 288 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp"
290 # twice in the link line, and we need to maintain these duplicates. 289 # twice in the link line, and we need to maintain these duplicates.
291 for library in reversed(libraries): 290 for library in reversed(libraries):
292 VisitLibrary(library) 291 VisitLibrary(library)
293 292
294 closure.reverse() 293 closure.reverse()
295 return closure 294 return closure
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698