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

Side by Side Diff: tools/android/md5sum/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 | « tools/android/forwarder2/BUILD.gn ('k') | tools/gn/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/md5sum/md5sum.gyp:md5sum 5 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum
6 group("md5sum") { 6 group("md5sum") {
7 datadeps = [ 7 datadeps = [
8 ":md5sum_prepare_dist($default_toolchain)", 8 ":md5sum_prepare_dist($default_toolchain)",
9 ":md5sum_copy_host($host_toolchain)", 9 ":md5sum_copy_host($host_toolchain)",
10 ] 10 ]
11 11
12 # TODO(cjhopman): Remove once group datadeps are fixed. 12 # TODO(cjhopman): Remove once group datadeps are fixed.
13 deps = datadeps 13 deps = datadeps
14 } 14 }
15 15
16 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum_bin_device (and md5sum_bin_host) 16 # GYP: //tools/android/md5sum/md5sum.gyp:md5sum_bin_device (and md5sum_bin_host)
17 executable("md5sum_bin") { 17 executable("md5sum_bin") {
18 sources = [ 18 sources = [
19 "md5sum.cc", 19 "md5sum.cc",
20 ] 20 ]
21 deps = [ 21 deps = [
22 "//base", 22 "//base",
23 "//build/config/sanitizers:deps",
23 ] 24 ]
24 25
25 # TODO(GYP) 26 # TODO(GYP)
26 #'conditions': [ 27 #'conditions': [
27 #[ 'order_profiling!=0 and OS=="android"', { 28 #[ 'order_profiling!=0 and OS=="android"', {
28 #'dependencies': [ '../../../tools/cygprofile/cygprofile.gyp:cygprofile', ], 29 #'dependencies': [ '../../../tools/cygprofile/cygprofile.gyp:cygprofile', ],
29 #}], 30 #}],
30 #], 31 #],
31 } 32 }
32 33
(...skipping 25 matching lines...) Expand all
58 deps = [ 59 deps = [
59 ":md5sum_bin", 60 ":md5sum_bin",
60 ] 61 ]
61 args = [ 62 args = [
62 "-f", 63 "-f",
63 rebase_path(_src, root_build_dir), 64 rebase_path(_src, root_build_dir),
64 rebase_path(_target, root_build_dir), 65 rebase_path(_target, root_build_dir),
65 ] 66 ]
66 } 67 }
67 } 68 }
OLDNEW
« no previous file with comments | « tools/android/forwarder2/BUILD.gn ('k') | tools/gn/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698