OLD | NEW |
(Empty) | |
| 1 # -*- python -*- |
| 2 # Copyright (c) 2014 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 Import('env') |
| 7 |
| 8 # Compile this program using the host build environment since it is always |
| 9 # used as an intermediate build step. |
| 10 tls_edit_env = env['BUILD_ENV'] |
| 11 tls_edit_exe = tls_edit_env.ComponentProgram( |
| 12 'tls_edit', |
| 13 'tls_edit.c', |
| 14 EXTRA_LIBS=['rdfa_validator', 'platform']) |
| 15 tls_edit_env.Install('${STAGING_DIR}', tls_edit_exe) |
OLD | NEW |