OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |