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

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: Fixed android platform name. Created 4 years, 8 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 | « build/android/android.isolate ('k') | build/android/devil_chromium.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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}}/aapt"
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}}/dexdump"
36 ]
37 }
38 }
39 },
40 "forwarder_device": {
41 "file_info": {
42 "android_{{android_app_abi}}": {
43 "local_paths": [
44 "{{output_dir}}/forwarder_dist"
45 ]
46 }
47 }
48 },
49 "forwarder_host": {
50 "file_info": {
51 "linux2_x86_64": {
52 "local_paths": [
53 "{{output_dir}}/host_forwarder"
54 ]
55 }
56 }
57 },
58 "md5sum_device": {
59 "file_info": {
60 "android_{{android_app_abi}}": {
61 "local_paths": [
62 "{{output_dir}}/md5sum_dist"
63 ]
64 }
65 }
66 },
67 "md5sum_host": {
68 "file_info": {
69 "linux2_x86_64": {
70 "local_paths": [
71 "{{output_dir}}/md5sum_bin_host"
72 ]
73 }
74 }
75 },
76 "split-select": {
77 "file_info": {
78 "linux2_x86_64": {
79 "local_paths": [
80 "{{android_sdk_root}}/build-tools/{{build_tools_version}}/split-sele ct"
81 ]
82 }
83 }
84 },
85 "pymock": {
86 "file_info": {
87 "darwin_x86_64": {
88 "local_paths": [
89 "third_party/pymock"
90 ]
91 },
92 "linux2_x86_64": {
93 "local_paths": [
94 "third_party/pymock"
95 ]
96 },
97 "win32_AMD64": {
98 "local_paths": [
99 "third_party/pymock"
100 ]
101 }
102 }
103 }
104 }
105 }
OLDNEW
« no previous file with comments | « build/android/android.isolate ('k') | build/android/devil_chromium.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698