Index: services/files/BUILD.gn |
diff --git a/services/files/BUILD.gn b/services/files/BUILD.gn |
index e00eb06f0dd3f186ab751587efef5a1d0b205553..d804042bf97ecd7cc1285f3e4f51c89650996999 100644 |
--- a/services/files/BUILD.gn |
+++ b/services/files/BUILD.gn |
@@ -6,15 +6,27 @@ import("//mojo/public/mojo_application.gni") |
mojo_native_application("files") { |
sources = [ |
+ "main.cc", |
+ ] |
+ |
+ deps = [ |
+ ":lib", |
+ "//mojo/application", |
+ ] |
+} |
+ |
+source_set("lib") { |
+ sources = [ |
"directory_impl.cc", |
"directory_impl.h", |
"file_impl.cc", |
"file_impl.h", |
+ "files_app.cc", |
+ "files_app.h", |
"files_impl.cc", |
"files_impl.h", |
"futimens.h", |
"futimens_android.cc", |
- "main.cc", |
"shared_impl.cc", |
"shared_impl.h", |
"util.cc", |