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

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

Issue 1335313003: Replace instances of datadeps --> data_deps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make formatter recognize both datadeps and data_deps 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/command_format.cc » ('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 data_deps = [
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 data_deps are fixed.
13 deps = datadeps 13 deps = data_deps
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 "//build/config/sanitizers:deps",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 deps = [ 59 deps = [
60 ":md5sum_bin", 60 ":md5sum_bin",
61 ] 61 ]
62 args = [ 62 args = [
63 "-f", 63 "-f",
64 rebase_path(_src, root_build_dir), 64 rebase_path(_src, root_build_dir),
65 rebase_path(_target, root_build_dir), 65 rebase_path(_target, root_build_dir),
66 ] 66 ]
67 } 67 }
68 } 68 }
OLDNEW
« no previous file with comments | « tools/android/forwarder2/BUILD.gn ('k') | tools/gn/command_format.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698