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

Side by Side Diff: tools/android/forwarder2/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 | « 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 data_deps = [
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)",
11 ":device_forwarder_prepare_dist($default_toolchain)", 11 ":device_forwarder_prepare_dist($default_toolchain)",
12 ] 12 ]
13 } 13 }
14 14
15 if (current_toolchain == default_toolchain) { 15 if (current_toolchain == default_toolchain) {
16 import("//build/config/android/rules.gni") 16 import("//build/config/android/rules.gni")
17 17
(...skipping 20 matching lines...) Expand all
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 "//build/config/sanitizers:deps",
46 "//tools/android/common", 46 "//tools/android/common",
47 ] 47 ]
48 datadeps = [ 48 data_deps = [ "//build/android/pylib/device/commands" ]
49 "//build/android/pylib/device/commands",
50 ]
51 } 49 }
52 50
53 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 51 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
54 create_native_executable_dist("device_forwarder_prepare_dist") { 52 create_native_executable_dist("device_forwarder_prepare_dist") {
55 dist_dir = "$root_build_dir/forwarder_dist" 53 dist_dir = "$root_build_dir/forwarder_dist"
56 binary = "$root_build_dir/device_forwarder" 54 binary = "$root_build_dir/device_forwarder"
57 deps = [ 55 deps = [
58 ":device_forwarder", 56 ":device_forwarder",
59 ] 57 ]
60 } 58 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "$root_out_dir/host_forwarder", 95 "$root_out_dir/host_forwarder",
98 ] 96 ]
99 outputs = [ 97 outputs = [
100 "$root_build_dir/host_forwarder", 98 "$root_build_dir/host_forwarder",
101 ] 99 ]
102 deps = [ 100 deps = [
103 ":host_forwarder", 101 ":host_forwarder",
104 ] 102 ]
105 } 103 }
106 } 104 }
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