| 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 30 matching lines...) Expand all Loading... |
| 41 'platform_qual_lib': [ | 41 'platform_qual_lib': [ |
| 42 'cpu_features', | 42 'cpu_features', |
| 43 ], | 43 ], |
| 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', | |
| 52 'simple_service', | 51 'simple_service', |
| 53 'thread_interface', | 52 'thread_interface', |
| 54 'nonnacl_srpc', | 53 'nonnacl_srpc', |
| 55 'nrd_xfer', | 54 'nrd_xfer', |
| 56 'nacl_perf_counter', | 55 'nacl_perf_counter', |
| 57 'nacl_base', | 56 'nacl_base', |
| 58 'imc', | 57 'imc', |
| 59 'nacl_fault_inject', | 58 'nacl_fault_inject', |
| 60 'nacl_interval', | 59 'nacl_interval', |
| 61 'platform', | 60 'platform', |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 closure.append(library) | 176 closure.append(library) |
| 178 | 177 |
| 179 # Ideally we would just do "VisitList(libraries)" here, but some | 178 # Ideally we would just do "VisitList(libraries)" here, but some |
| 180 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp" | 179 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp" |
| 181 # twice in the link line, and we need to maintain these duplicates. | 180 # twice in the link line, and we need to maintain these duplicates. |
| 182 for library in reversed(libraries): | 181 for library in reversed(libraries): |
| 183 VisitLibrary(library) | 182 VisitLibrary(library) |
| 184 | 183 |
| 185 closure.reverse() | 184 closure.reverse() |
| 186 return closure | 185 return closure |
| OLD | NEW |