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. |
Nico
2016/06/09 00:41:18
does this mean "do not edit"? not clear
Dirk Pranke
2016/06/09 01:06:14
Hm. Good question. Hopefully bradnelson@ can answe
bradn
2016/06/10 05:35:52
That's one from noelallen's conversion script.
It'
| |
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 | |
25 # All executables must have the sanitizer deps to properly link in | |
26 # asan mode (this target will be empty in other cases). | |
27 "//build/config/sanitizers:deps", | |
28 | |
24 "//build/win:default_exe_manifest", | 29 "//build/win:default_exe_manifest", |
25 ":elf_load", | 30 ":elf_load", |
26 "//native_client/src/shared/platform:platform", | 31 "//native_client/src/shared/platform:platform", |
27 "//native_client/src/trusted/cpu_features:cpu_features", | 32 "//native_client/src/trusted/cpu_features:cpu_features", |
28 "//native_client/src/trusted/validator_arm:arm_validator_core", | 33 "//native_client/src/trusted/validator_arm:arm_validator_core", |
29 "//native_client/src/trusted/validator_arm:arm_validator_reporters", | 34 "//native_client/src/trusted/validator_arm:arm_validator_reporters", |
30 "//native_client/src/trusted/validator_ragel:rdfa_validator", | 35 "//native_client/src/trusted/validator_ragel:rdfa_validator", |
31 ] | 36 ] |
32 } | 37 } |
OLD | NEW |