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

Unified Diff: components/filesystem/public/cpp/prefs/BUILD.gn

Issue 1624683002: mash: Add a simple, temporary preferences store. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the directory unittests? Created 4 years, 11 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: components/filesystem/public/cpp/prefs/BUILD.gn
diff --git a/components/filesystem/public/cpp/prefs/BUILD.gn b/components/filesystem/public/cpp/prefs/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..16c96781bb0e03c459dc9a383a96ea64e3d29b8f
--- /dev/null
+++ b/components/filesystem/public/cpp/prefs/BUILD.gn
@@ -0,0 +1,22 @@
+# Copyright 2016 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/tools/bindings/mojom.gni")
sky 2016/01/22 22:21:13 You probably don't need this import.
+
+source_set("prefs") {
+ sources = [
+ "filesystem_json_pref_store.cc",
+ "filesystem_json_pref_store.h",
+ "pref_service_factory.cc",
+ "pref_service_factory.h",
+ ]
+
+ deps = [
+ "//base",
+ "//base:prefs",
+ "//components/filesystem/public/interfaces",
+ "//mojo/common",
+ "//mojo/shell/public/cpp",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698