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

Unified Diff: build/android/setup.gyp

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/setup.gyp
diff --git a/build/android/setup.gyp b/build/android/setup.gyp
index 0ef0531556183f6723ac208b4b049a25e45189f0..e598b3b9902f92c3d86919be690a4414b6df43e8 100644
--- a/build/android/setup.gyp
+++ b/build/android/setup.gyp
@@ -48,6 +48,20 @@
],
},
{
+ 'target_name': 'devil_chromium_config',
+ 'type': 'none',
+ 'variables': {
+ 'jinja_inputs': ['devil_chromium.jinja'],
+ 'jinja_output': '<(PRODUCT_DIR)/gen/devil_chromium.json',
+ 'jinja_variables': [
+ 'output_dir=<(PRODUCT_DIR)',
+ 'android_sdk_root=<(android_sdk_root)',
+ 'build_tools_version=<(android_sdk_build_tools_version)',
+ ],
+ },
+ 'includes': [ '../../build/android/jinja_template.gypi' ],
+ }, # devil_chromium_config
+ {
# Target for creating common output build directories. Creating output
# dirs beforehand ensures that build scripts can assume these folders to
# exist and there are no race conditions resulting from build scripts

Powered by Google App Engine
This is Rietveld 408576698