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

Unified Diff: services/files/BUILD.gn

Issue 875643004: Prototype of Files service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: already ignored EINTR Created 5 years, 10 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 | « services/BUILD.gn ('k') | services/files/directory.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/files/BUILD.gn
diff --git a/services/reaper/BUILD.gn b/services/files/BUILD.gn
similarity index 51%
copy from services/reaper/BUILD.gn
copy to services/files/BUILD.gn
index 3be1edccd1c67cd168a01028bf04db98a0015687..e5ae2a7010168af594fc66debfa59ae390e58e87 100644
--- a/services/reaper/BUILD.gn
+++ b/services/files/BUILD.gn
@@ -1,51 +1,51 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
+# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//mojo/public/mojo_application.gni")
import("//mojo/public/tools/bindings/mojom.gni")
-mojo_native_application("reaper") {
+mojo_native_application("files") {
sources = [
+ "directory_impl.cc",
+ "directory_impl.h",
+ "file_impl.cc",
+ "file_impl.h",
+ "files_impl.cc",
+ "files_impl.h",
+ "futimens.h",
+ "futimens_android.cc",
"main.cc",
- "reaper_binding.cc",
- "reaper_binding.h",
- "reaper_impl.cc",
- "reaper_impl.h",
- "transfer_binding.cc",
- "transfer_binding.h",
+ "util.cc",
+ "util.h",
]
deps = [
":bindings",
"//base",
- "//crypto",
- "//url",
"//mojo/application",
"//mojo/common",
- "//mojo/environment:chromium",
"//mojo/public/cpp/application",
- "//mojo/public/cpp/bindings:callback",
"//mojo/public/cpp/system",
]
}
mojom("bindings") {
sources = [
- "diagnostics.mojom",
- "reaper.mojom",
- "scythe.mojom",
- "transfer.mojom",
+ "directory.mojom",
+ "file.mojom",
+ "files.mojom",
+ "types.mojom",
]
}
-mojo_native_application("tests") {
- output_name = "reaper_apptests"
+mojo_native_application("apptests") {
+ output_name = "files_apptests"
testonly = true
sources = [
- "reaper_apptest.cc",
+ "files_apptest.cc",
]
deps = [
@@ -53,9 +53,8 @@ mojo_native_application("tests") {
"//base",
"//mojo/application",
"//mojo/application:test_support",
- "//mojo/common",
"//mojo/public/cpp/bindings",
]
- data_deps = [ ":reaper" ]
+ data_deps = [ ":files" ]
}
« no previous file with comments | « services/BUILD.gn ('k') | services/files/directory.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698