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

Unified Diff: components/policy/resources/policy_templates.gni

Issue 2481183002: Generate ADMX template for Chrome OS policies (Closed)
Patch Set: Couple of fixes after testing Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/policy/BUILD.gn ('k') | components/policy/resources/policy_templates.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/policy/resources/policy_templates.gni
diff --git a/components/policy/resources/policy_templates.gni b/components/policy/resources/policy_templates.gni
index 6c0f2786328d15d0836b05141e65b08926752b0c..7159dfc6b9771314a7c6fa02ee441b2953fe3c42 100644
--- a/components/policy/resources/policy_templates.gni
+++ b/components/policy/resources/policy_templates.gni
@@ -155,3 +155,26 @@ foreach(lang, policy_templates_languages) {
policy_templates_win_google_outputs +=
[ "$policy_templates_base_dir/windows/admx/${lang}/google.adml" ]
}
+
+# Chrome OS outputs.
+policy_templates_chromeos_admx_path =
+ "$policy_templates_base_dir/chromeos/admx/chromeos.admx"
+policy_templates_chromeos_adml_path =
+ "$policy_templates_base_dir/chromeos/admx/\${lang}/chromeos.adml"
+policy_templates_chromeos_outputs = [ policy_templates_chromeos_admx_path ]
+foreach(lang, policy_templates_languages) {
+ policy_templates_chromeos_outputs +=
+ [ "$policy_templates_base_dir/chromeos/admx/${lang}/chromeos.adml" ]
+}
+
+# Additional Chrome OS outputs for branded builds.
+policy_templates_chromeos_google_admx_path =
+ "$policy_templates_base_dir/chromeos/admx/google.admx"
+policy_templates_chromeos_google_adml_path =
+ "$policy_templates_base_dir/chromeos/admx/\${lang}/google.adml"
+policy_templates_chromeos_google_outputs =
+ [ policy_templates_chromeos_google_admx_path ]
+foreach(lang, policy_templates_languages) {
+ policy_templates_chromeos_google_outputs +=
+ [ "$policy_templates_base_dir/chromeos/admx/${lang}/google.adml" ]
+}
« no previous file with comments | « components/policy/BUILD.gn ('k') | components/policy/resources/policy_templates.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698