Index: services/preferences/public/cpp/tracked/BUILD.gn |
diff --git a/services/preferences/public/cpp/tracked/BUILD.gn b/services/preferences/public/cpp/tracked/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6a44965ae2fcb45f9571ec835bf843af078b4be4 |
--- /dev/null |
+++ b/services/preferences/public/cpp/tracked/BUILD.gn |
@@ -0,0 +1,33 @@ |
+# 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. |
+ |
+static_library("tracked") { |
+ sources = [ |
+ "configuration.cc", |
+ "configuration.h", |
+ "pref_names.cc", |
+ "pref_names.h", |
+ "tracked_preference_histogram_names.cc", |
+ "tracked_preference_histogram_names.h", |
+ ] |
+ public_deps = [ |
+ "//services/preferences/public/interfaces", |
+ ] |
+ deps = [ |
+ "//base", |
+ ] |
+} |
+ |
+static_library("test_support") { |
+ testonly = true |
+ sources = [ |
+ "mock_validation_delegate.cc", |
+ "mock_validation_delegate.h", |
+ ] |
+ |
+ deps = [ |
+ "//base:base", |
gab
2017/03/30 14:56:34
For consistency in this file:
//base
only as wel
Sam McNally
2017/03/31 02:55:51
Done.
|
+ "//services/preferences/public/interfaces", |
+ ] |
+} |