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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: build/android/devil_chromium.jinja
diff --git a/build/android/devil_chromium.jinja b/build/android/devil_chromium.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..b3c8cfc1a203a87e19d2d22c61f336c2391a816b
--- /dev/null
+++ b/build/android/devil_chromium.jinja
@@ -0,0 +1,155 @@
+{
+ "config_type": "BaseConfig",
+ "dependencies": {
+ "aapt": {
+ "file_info": {
+ "linux2_x86_64": {
+ "local_paths": [
+ "../../../{{android_sdk_root}}/build-tools/{{build_tools_version}}/aapt"
+ ]
+ }
+ }
+ },
+ "adb": {
+ "file_info": {
+ "linux2_x86_64": {
+ "local_paths": [
+ "../../../{{android_sdk_root}}/platform-tools/adb"
+ ]
+ }
+ }
+ },
+ "android_sdk": {
+ "file_info": {
+ "linux2_x86_64": {
+ "local_paths": [
+ "../../../{{android_sdk_root}}"
+ ]
+ }
+ }
+ },
+ "dexdump": {
+ "file_info": {
+ "linux2_x86_64": {
+ "local_paths": [
+ "../../../{{android_sdk_root}}/build-tools/{{build_tools_version}}/dexdump"
+ ]
+ }
+ }
+ },
+ "forwarder_device": {
+ "file_info": {
+ "android_armeabi-v7a": {
+ "local_paths": [
+ "../../../{{output_dir}}/forwarder_dist"
+ ]
+ },
+ "android_arm64-v8a": {
jbudorick 2016/03/24 18:28:43 and actually, we know the device architecture at b
+ "local_paths": [
+ "../../../{{output_dir}}/forwarder_dist"
+ ]
+ },
+ "android_mips": {
+ "local_paths": [
+ "../../../{{output_dir}}/forwarder_dist"
+ ]
+ },
+ "android_mips64": {
+ "local_paths": [
+ "../../../{{output_dir}}/forwarder_dist"
+ ]
+ },
+ "android_x86": {
+ "local_paths": [
+ "../../../{{output_dir}}/forwarder_dist"
+ ]
+ },
+ "android_x86_64": {
+ "local_paths": [
+ "../../../{{output_dir}}/forwarder_dist"
+ ]
+ }
+ }
+ },
+ "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
+ "file_info": {
+ "linux2_x86_64": {
+ "local_paths": [
+ "../../../{{output_dir}}/host_forwarder"
+ ]
+ }
+ }
+ },
+ "md5sum_device": {
+ "file_info": {
+ "android_armeabi-v7a": {
jbudorick 2016/03/24 18:28:43 (same here)
+ "local_paths": [
+ "../../../{{output_dir}}/md5sum_dist"
+ ]
+ },
+ "android_arm64-v8a": {
+ "local_paths": [
+ "../../../{{output_dir}}/md5sum_dist"
+ ]
+ },
+ "android_mips": {
+ "local_paths": [
+ "../../../{{output_dir}}/md5sum_dist"
+ ]
+ },
+ "android_mips64": {
+ "local_paths": [
+ "../../../{{output_dir}}/md5sum_dist"
+ ]
+ },
+ "android_x86": {
+ "local_paths": [
+ "../../../{{output_dir}}/md5sum_dist"
+ ]
+ },
+ "android_x86_64": {
+ "local_paths": [
+ "../../../{{output_dir}}/md5sum_dist"
+ ]
+ }
+ }
+ },
+ "md5sum_host": {
+ "file_info": {
+ "linux2_x86_64": {
+ "local_paths": [
+ "../../../{{output_dir}}/md5sum_bin_host"
+ ]
+ }
+ }
+ },
+ "split-select": {
+ "file_info": {
+ "linux2_x86_64": {
+ "local_paths": [
+ "../../../{{android_sdk_root}}/build-tools/{{build_tools_version}}/split-select"
+ ]
+ }
+ }
+ },
+ "pymock": {
+ "file_info": {
+ "darwin_x86_64": {
+ "local_paths": [
+ "../../../third_party/pymock"
+ ]
+ },
+ "linux2_x86_64": {
+ "local_paths": [
+ "../../../third_party/pymock"
+ ]
+ },
+ "win32_AMD64": {
+ "local_paths": [
+ "../../../third_party/pymock"
+ ]
+ }
+ }
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698