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

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

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.gypi
diff --git a/chrome/common/extensions/api/schemas.gypi b/chrome/common/extensions/api/schemas.gypi
index 51a5797ac95f2e60999a3c3219a2948f721cef9c..2f18c53022988df6310b4db0e57ed9f5e75eb24d 100644
--- a/chrome/common/extensions/api/schemas.gypi
+++ b/chrome/common/extensions/api/schemas.gypi
@@ -135,8 +135,11 @@
# Non Android schemas.
'non_android_schema_files': [
- 'gcd_private.idl',
'launcher_page.idl',
+ ],
+
+ 'service_discovery_schema_files': [
+ 'gcd_private.idl',
'mdns.idl',
],
@@ -177,14 +180,19 @@
'input_ime.json',
],
}],
- ['enable_webrtc==1', {
+ ['OS!="android"', {
'schema_files': [
- '<@(webrtc_schema_files)',
+ '<@(non_android_schema_files)',
],
}],
- ['OS!="android"', {
+ ['enable_service_discovery==1', {
'schema_files': [
- '<@(non_android_schema_files)',
+ '<@(service_discovery_schema_files)',
+ ],
+ }],
+ ['enable_webrtc==1', {
+ 'schema_files': [
+ '<@(webrtc_schema_files)',
],
}],
],

Powered by Google App Engine
This is Rietveld 408576698