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

Unified Diff: chrome/common/extensions/api/BUILD.gn

Issue 2362963002: Do not include fileBrowserHandler schema definition in non-chromeos. (Closed)
Patch Set: Created 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/BUILD.gn
diff --git a/chrome/common/extensions/api/BUILD.gn b/chrome/common/extensions/api/BUILD.gn
index cd8827217752b4f5075ca082ddaf1b4a38bed749..905fa27cb8f82a8b958a6d67bdb4c6366d725c45 100644
--- a/chrome/common/extensions/api/BUILD.gn
+++ b/chrome/common/extensions/api/BUILD.gn
@@ -175,7 +175,6 @@ json_schema_api("api") {
"browser_action.json",
"commands.json",
"declarative_content.json",
- "file_browser_handler.json",
"page_action.json",
"privacy.json",
"proxy.json",
@@ -184,7 +183,9 @@ json_schema_api("api") {
"types_private.json",
"webstore.json",
]
- if (!is_chromeos) {
+ if (is_chromeos) {
+ uncompiled_bundle_schema_sources += [ "file_browser_handler.json" ]
+ } else {
# On ChromeOS, input_method_private is fully compiled (as part of
# schema_files), and so gets added to the bundle already. On other
# platforms, we still need it added to the bundle.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698