Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1212)

Side by Side Diff: src/trusted/validator/driver/BUILD.gn

Issue 2049033004: Fix NaCl executable linkages under ASAN. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: add deps to sel_ldr, ncval_new as well Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/trusted/service_runtime/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698