| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 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 simple_service_inputs = [ | 8 simple_service_inputs = [ |
| 9 'nacl_simple_ltd_service.c', | 9 'nacl_simple_ltd_service.c', |
| 10 'nacl_simple_rservice.c', | 10 'nacl_simple_rservice.c', |
| 11 'nacl_simple_service.c', | 11 'nacl_simple_service.c', |
| 12 ] | 12 ] |
| 13 | 13 |
| 14 env.DualLibrary('simple_service', simple_service_inputs) | 14 env.DualLibrary('simple_service', simple_service_inputs) |
| 15 | |
| 16 # see tests/nameservice | |
| OLD | NEW |