| OLD | NEW |
| 1 # Copyright (c) 2014 The Native ClientAuthors. All rights reserved. | 1 # Copyright (c) 2014 The Native ClientAuthors. 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 # Autogenerated from src/trusted/validator/driver/build.scons. | 5 # Autogenerated from src/trusted/validator/driver/build.scons. |
| 6 | 6 |
| 7 static_library("elf_load") { | 7 static_library("elf_load") { |
| 8 sources = [ | 8 sources = [ |
| 9 "elf_load.cc", | 9 "elf_load.cc", |
| 10 ] | 10 ] |
| 11 | 11 |
| 12 deps = [ | 12 deps = [ |
| 13 "//build/config/nacl:nacl_base", | 13 "//build/config/nacl:nacl_base", |
| 14 "//native_client/src/shared/platform:platform", | 14 "//native_client/src/shared/platform:platform", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 executable("ncval_new") { | 17 executable("ncval_new") { |
| 18 sources = [ | 18 sources = [ |
| 19 "ncval.cc", | 19 "ncval.cc", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 deps = [ | 22 deps = [ |
| 23 "//build/config/nacl:nacl_base", | 23 "//build/config/nacl:nacl_base", |
| 24 "//build/win:default_exe_manifest", |
| 24 ":elf_load", | 25 ":elf_load", |
| 25 "//native_client/src/shared/platform:platform", | 26 "//native_client/src/shared/platform:platform", |
| 26 "//native_client/src/trusted/cpu_features:cpu_features", | 27 "//native_client/src/trusted/cpu_features:cpu_features", |
| 27 "//native_client/src/trusted/validator_arm:arm_validator_core", | 28 "//native_client/src/trusted/validator_arm:arm_validator_core", |
| 28 "//native_client/src/trusted/validator_arm:arm_validator_reporters", | 29 "//native_client/src/trusted/validator_arm:arm_validator_reporters", |
| 29 "//native_client/src/trusted/validator_ragel:rdfa_validator", | 30 "//native_client/src/trusted/validator_ragel:rdfa_validator", |
| 30 ] | 31 ] |
| 31 } | 32 } |
| OLD | NEW |