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

Unified Diff: chrome/common/extensions/api/schemas.gni

Issue 1554563002: Put more files under the enable_service_discovery build flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo Created 5 years 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: chrome/common/extensions/api/schemas.gni
diff --git a/chrome/common/extensions/api/schemas.gni b/chrome/common/extensions/api/schemas.gni
index a996cbe6cbcda611cdbe1484c12da8905fe96fdb..d2b3b271b9f3a776d2ab60cec0d19591ee89ec2c 100644
--- a/chrome/common/extensions/api/schemas.gni
+++ b/chrome/common/extensions/api/schemas.gni
@@ -17,12 +17,15 @@ sources = gypi_values.main_schema_files
if (is_chromeos) {
sources += gypi_values.chromeos_schema_files
}
-if (enable_webrtc) {
- sources += gypi_values.webrtc_schema_files
-}
if (!is_android) {
sources += gypi_values.non_android_schema_files
}
+if (enable_service_discovery) {
+ sources += gypi_values.service_discovery_schema_files
+}
+if (enable_webrtc) {
+ sources += gypi_values.webrtc_schema_files
+}
uncompiled_sources = gypi_values.main_non_compiled_schema_files

Powered by Google App Engine
This is Rietveld 408576698