summaryrefslogtreecommitdiff
path: root/chromium/ios/public/provider/chrome/browser/user/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ios/public/provider/chrome/browser/user/BUILD.gn')
-rw-r--r--chromium/ios/public/provider/chrome/browser/user/BUILD.gn29
1 files changed, 29 insertions, 0 deletions
diff --git a/chromium/ios/public/provider/chrome/browser/user/BUILD.gn b/chromium/ios/public/provider/chrome/browser/user/BUILD.gn
new file mode 100644
index 00000000000..cf8026039f5
--- /dev/null
+++ b/chromium/ios/public/provider/chrome/browser/user/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2019 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.
+
+source_set("user") {
+ configs += [ "//build/config/compiler:enable_arc" ]
+ sources = [
+ "special_user_prefs.h",
+ "special_user_prefs.mm",
+ "special_user_provider.h",
+ "special_user_provider.mm",
+ ]
+ deps = [
+ "//base",
+ ]
+}
+
+source_set("test_support") {
+ configs += [ "//build/config/compiler:enable_arc" ]
+ testonly = true
+ sources = [
+ "test_special_user_provider.h",
+ "test_special_user_provider.mm",
+ ]
+ deps = [
+ ":user",
+ "//base",
+ ]
+}