| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |