| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 Import('env') | 6 Import('env') |
| 7 | 7 |
| 8 env.ComponentLibrary('ldr', | 8 env.DualLibrary('generic_container', |
| 9 ['nacl_ldr.c']) | 9 ['container_hash_table.c', |
| 10 'container_list.c' |
| 11 ]) |
| OLD | NEW |