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

Side by Side Diff: tools/android/forwarder2/BUILD.gn

Issue 1318343003: Annotate GN executables and shared_libraries with sanitizer deps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « third_party/widevine/cdm/BUILD.gn ('k') | tools/android/md5sum/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. 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 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 5 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
6 group("forwarder2") { 6 group("forwarder2") {
7 datadeps = [ 7 datadeps = [
8 ":host_forwarder($host_toolchain)", 8 ":host_forwarder($host_toolchain)",
9 ":host_forwarder_copy($host_toolchain)", 9 ":host_forwarder_copy($host_toolchain)",
10 ":device_forwarder($default_toolchain)", 10 ":device_forwarder($default_toolchain)",
(...skipping 24 matching lines...) Expand all
35 "forwarders_manager.h", 35 "forwarders_manager.h",
36 "pipe_notifier.cc", 36 "pipe_notifier.cc",
37 "pipe_notifier.h", 37 "pipe_notifier.h",
38 "self_deleter_helper.h", 38 "self_deleter_helper.h",
39 "socket.cc", 39 "socket.cc",
40 "socket.h", 40 "socket.h",
41 "util.h", 41 "util.h",
42 ] 42 ]
43 deps = [ 43 deps = [
44 "//base", 44 "//base",
45 "//build/config/sanitizers:deps",
45 "//tools/android/common", 46 "//tools/android/common",
46 ] 47 ]
47 datadeps = [ 48 datadeps = [
48 "//build/android/pylib/device/commands", 49 "//build/android/pylib/device/commands",
49 ] 50 ]
50 } 51 }
51 52
52 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 53 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
53 create_native_executable_dist("device_forwarder_prepare_dist") { 54 create_native_executable_dist("device_forwarder_prepare_dist") {
54 dist_dir = "$root_build_dir/forwarder_dist" 55 dist_dir = "$root_build_dir/forwarder_dist"
(...skipping 23 matching lines...) Expand all
78 "host_forwarder_main.cc", 79 "host_forwarder_main.cc",
79 "pipe_notifier.cc", 80 "pipe_notifier.cc",
80 "pipe_notifier.h", 81 "pipe_notifier.h",
81 "self_deleter_helper.h", 82 "self_deleter_helper.h",
82 "socket.cc", 83 "socket.cc",
83 "socket.h", 84 "socket.h",
84 "util.h", 85 "util.h",
85 ] 86 ]
86 deps = [ 87 deps = [
87 "//base", 88 "//base",
89 "//build/config/sanitizers:deps",
88 "//tools/android/common", 90 "//tools/android/common",
89 ] 91 ]
90 } 92 }
91 93
92 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 94 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
93 copy("host_forwarder_copy") { 95 copy("host_forwarder_copy") {
94 sources = [ 96 sources = [
95 "$root_out_dir/host_forwarder", 97 "$root_out_dir/host_forwarder",
96 ] 98 ]
97 outputs = [ 99 outputs = [
98 "$root_build_dir/host_forwarder", 100 "$root_build_dir/host_forwarder",
99 ] 101 ]
100 deps = [ 102 deps = [
101 ":host_forwarder", 103 ":host_forwarder",
102 ] 104 ]
103 } 105 }
104 } 106 }
OLDNEW
« no previous file with comments | « third_party/widevine/cdm/BUILD.gn ('k') | tools/android/md5sum/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698