Chromium Code Reviews| 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 11 matching lines...) Expand all Loading... | |
| 22 'nonnacl_srpc', | 22 'nonnacl_srpc', |
| 23 'nrd_xfer', | 23 'nrd_xfer', |
| 24 'nacl_perf_counter', | 24 'nacl_perf_counter', |
| 25 'nacl_base', | 25 'nacl_base', |
| 26 'imc', | 26 'imc', |
| 27 'container', | 27 'container', |
| 28 'nacl_fault_inject', | 28 'nacl_fault_inject', |
| 29 'nacl_interval', | 29 'nacl_interval', |
| 30 'platform', | 30 'platform', |
| 31 'platform_qual_lib', | 31 'platform_qual_lib', |
| 32 'nacl_platform', | |
|
Mark Seaborn
2012/08/21 17:53:03
Why add this dependency when the 'sel' library doe
Petr Hosek
2012/08/23 00:43:14
Removed.
| |
| 32 'gio', | 33 'gio', |
| 33 'validators', | 34 'validators', |
| 34 ], | 35 ], |
| 35 'debug_stub': [ | 36 'debug_stub': [ |
| 36 'sel', | 37 'sel', |
| 37 ], | 38 ], |
| 38 } | 39 } |
| 39 | 40 |
| 40 | 41 |
| 41 # Platform specific library dependencies. Mapping from a platform, | 42 # Platform specific library dependencies. Mapping from a platform, |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 closure.append(library) | 211 closure.append(library) |
| 211 | 212 |
| 212 # Ideally we would just do "VisitList(libraries)" here, but some | 213 # Ideally we would just do "VisitList(libraries)" here, but some |
| 213 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp" | 214 # PPAPI tests (specifically, tests/ppapi_gles_book) list "ppapi_cpp" |
| 214 # twice in the link line, and we need to maintain these duplicates. | 215 # twice in the link line, and we need to maintain these duplicates. |
| 215 for library in reversed(libraries): | 216 for library in reversed(libraries): |
| 216 VisitLibrary(library) | 217 VisitLibrary(library) |
| 217 | 218 |
| 218 closure.reverse() | 219 closure.reverse() |
| 219 return closure | 220 return closure |
| OLD | NEW |