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

Unified Diff: extensions/browser/api/file_system/BUILD.gn

Issue 2934143002: Move chrome.fileSystem implementation to //extensions (Closed)
Patch Set: tentative workaround for file_manager tests Created 3 years, 6 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: extensions/browser/api/file_system/BUILD.gn
diff --git a/extensions/browser/api/file_system/BUILD.gn b/extensions/browser/api/file_system/BUILD.gn
index 0e5fa0b4f254191a3d3a173d0bf80f9b515c6aed..a352c4832a41919f627782293ad7339cc27223eb 100644
--- a/extensions/browser/api/file_system/BUILD.gn
+++ b/extensions/browser/api/file_system/BUILD.gn
@@ -9,12 +9,28 @@ assert(enable_extensions,
source_set("file_system") {
sources = [
+ "file_system_api.cc",
+ "file_system_api.h",
+ "file_system_delegate.h",
"saved_file_entry.cc",
"saved_file_entry.h",
"saved_files_service_interface.h",
]
deps = [
- "//base:base",
+ "//base",
+ "//content/public/browser",
+ "//extensions/browser/api/file_handlers",
+ "//extensions/common",
+ "//extensions/common/api",
+ "//net",
+ "//storage/browser",
+ "//storage/common",
+ "//ui/base",
+ "//ui/shell_dialogs",
+ ]
+
+ public_deps = [
+ "//extensions/browser:browser_sources",
]
}

Powered by Google App Engine
This is Rietveld 408576698