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

Side by Side Diff: build/android/devil_chromium.jinja

Issue 1812383003: [Devil] Replace generated Devil config with jinja template. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed devil_chromium.json Created 4 years, 9 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
OLDNEW
(Empty)
1 {
2 "config_type": "BaseConfig",
3 "dependencies": {
4 "aapt": {
5 "file_info": {
6 "linux2_x86_64": {
7 "local_paths": [
8 "../../../{{android_sdk_root}}/build-tools/{{build_tools_version}}/a apt"
9 ]
10 }
11 }
12 },
13 "adb": {
14 "file_info": {
15 "linux2_x86_64": {
16 "local_paths": [
17 "../../../{{android_sdk_root}}/platform-tools/adb"
18 ]
19 }
20 }
21 },
22 "android_sdk": {
23 "file_info": {
24 "linux2_x86_64": {
25 "local_paths": [
26 "../../../{{android_sdk_root}}"
27 ]
28 }
29 }
30 },
31 "dexdump": {
32 "file_info": {
33 "linux2_x86_64": {
34 "local_paths": [
35 "../../../{{android_sdk_root}}/build-tools/{{build_tools_version}}/d exdump"
36 ]
37 }
38 }
39 },
40 "forwarder_device": {
41 "file_info": {
42 "android_armeabi-v7a": {
43 "local_paths": [
44 "../../../{{output_dir}}/forwarder_dist"
45 ]
46 },
47 "android_arm64-v8a": {
jbudorick 2016/03/24 18:28:43 and actually, we know the device architecture at b
48 "local_paths": [
49 "../../../{{output_dir}}/forwarder_dist"
50 ]
51 },
52 "android_mips": {
53 "local_paths": [
54 "../../../{{output_dir}}/forwarder_dist"
55 ]
56 },
57 "android_mips64": {
58 "local_paths": [
59 "../../../{{output_dir}}/forwarder_dist"
60 ]
61 },
62 "android_x86": {
63 "local_paths": [
64 "../../../{{output_dir}}/forwarder_dist"
65 ]
66 },
67 "android_x86_64": {
68 "local_paths": [
69 "../../../{{output_dir}}/forwarder_dist"
70 ]
71 }
72 }
73 },
74 "forwarder_device": {
jbudorick 2016/03/24 18:27:38 wait, this is wrong. should be forwarder_host
mikecase (-- gone --) 2016/03/28 20:47:01 Done
75 "file_info": {
76 "linux2_x86_64": {
77 "local_paths": [
78 "../../../{{output_dir}}/host_forwarder"
79 ]
80 }
81 }
82 },
83 "md5sum_device": {
84 "file_info": {
85 "android_armeabi-v7a": {
jbudorick 2016/03/24 18:28:43 (same here)
86 "local_paths": [
87 "../../../{{output_dir}}/md5sum_dist"
88 ]
89 },
90 "android_arm64-v8a": {
91 "local_paths": [
92 "../../../{{output_dir}}/md5sum_dist"
93 ]
94 },
95 "android_mips": {
96 "local_paths": [
97 "../../../{{output_dir}}/md5sum_dist"
98 ]
99 },
100 "android_mips64": {
101 "local_paths": [
102 "../../../{{output_dir}}/md5sum_dist"
103 ]
104 },
105 "android_x86": {
106 "local_paths": [
107 "../../../{{output_dir}}/md5sum_dist"
108 ]
109 },
110 "android_x86_64": {
111 "local_paths": [
112 "../../../{{output_dir}}/md5sum_dist"
113 ]
114 }
115 }
116 },
117 "md5sum_host": {
118 "file_info": {
119 "linux2_x86_64": {
120 "local_paths": [
121 "../../../{{output_dir}}/md5sum_bin_host"
122 ]
123 }
124 }
125 },
126 "split-select": {
127 "file_info": {
128 "linux2_x86_64": {
129 "local_paths": [
130 "../../../{{android_sdk_root}}/build-tools/{{build_tools_version}}/s plit-select"
131 ]
132 }
133 }
134 },
135 "pymock": {
136 "file_info": {
137 "darwin_x86_64": {
138 "local_paths": [
139 "../../../third_party/pymock"
140 ]
141 },
142 "linux2_x86_64": {
143 "local_paths": [
144 "../../../third_party/pymock"
145 ]
146 },
147 "win32_AMD64": {
148 "local_paths": [
149 "../../../third_party/pymock"
150 ]
151 }
152 }
153 }
154 }
155 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698