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

Unified Diff: services/preferences/public/cpp/BUILD.gn

Issue 2092453002: Mojom interface for Preferences (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch to using DictionaryValue 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
Index: services/preferences/public/cpp/BUILD.gn
diff --git a/services/ui/public/cpp/input_devices/BUILD.gn b/services/preferences/public/cpp/BUILD.gn
similarity index 54%
copy from services/ui/public/cpp/input_devices/BUILD.gn
copy to services/preferences/public/cpp/BUILD.gn
index da90c47d20ffc64cb1d027d2497990bc538b34d8..38c985b525f6e97b1af83ddaa0465187396d7418 100644
--- a/services/ui/public/cpp/input_devices/BUILD.gn
+++ b/services/preferences/public/cpp/BUILD.gn
@@ -2,19 +2,21 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("input_devices") {
+source_set("cpp") {
sources = [
- "input_device_client.cc",
- "input_device_client.h",
+ "pref_observer_store.cc",
+ "pref_observer_store.h",
+ "preferences_export.h",
sadrul 2016/10/06 14:09:41 Doesn't looks like this file is in the CL? But do
jonross 2016/10/06 21:36:20 It's not anymore, and export not needed for source
]
- deps = [
+ public_deps = [
"//base",
+ "//components/prefs:prefs",
+ "//services/preferences/public/interfaces",
"//services/shell/public/cpp",
- "//ui/events/devices",
]
- public_deps = [
- "//services/ui/public/interfaces/input_devices",
+ deps = [
+ "//mojo/public/cpp/bindings:bindings",
]
}

Powered by Google App Engine
This is Rietveld 408576698