| 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 # NOTE: this test is used as simple sanity check for an SDK | 8 # NOTE: this test is used as simple sanity check for an SDK |
| 9 env.ComponentProgram('null.nexe', | 9 env.ComponentProgram('null', |
| 10 'null.c', | 10 'null.c', |
| 11 EXTRA_LIBS=['nacl', 'pthread'], | 11 EXTRA_LIBS=['nacl', 'pthread'], |
| 12 ) | 12 ) |
| OLD | NEW |