| Index: blimp/client/core/settings/BUILD.gn
|
| diff --git a/blimp/client/core/settings/BUILD.gn b/blimp/client/core/settings/BUILD.gn
|
| index 3f6cff6412ad24a6133148386b22ef085790aad6..95ece467c4961a03dc02c8da4c048b8d6daba6e6 100644
|
| --- a/blimp/client/core/settings/BUILD.gn
|
| +++ b/blimp/client/core/settings/BUILD.gn
|
| @@ -12,12 +12,19 @@ source_set("settings") {
|
|
|
| sources = [
|
| "blimp_settings_delegate.h",
|
| + "settings.cc",
|
| + "settings.h",
|
| "settings_feature.cc",
|
| "settings_feature.h",
|
| + "settings_observer.h",
|
| + "settings_prefs.cc",
|
| + "settings_prefs.h",
|
| ]
|
|
|
| deps = [
|
| + "//blimp/client/core/switches",
|
| "//blimp/common",
|
| + "//components/prefs",
|
| "//net",
|
| ]
|
|
|
| @@ -40,6 +47,24 @@ source_set("settings") {
|
| }
|
| }
|
|
|
| +source_set("unit_tests") {
|
| + visibility = [ "//blimp/client/core:unit_tests" ]
|
| +
|
| + testonly = true
|
| +
|
| + sources = [
|
| + "settings_unittest.cc",
|
| + ]
|
| +
|
| + deps = [
|
| + ":settings",
|
| + "//base",
|
| + "//components/prefs:test_support",
|
| + "//testing/gmock",
|
| + "//testing/gtest",
|
| + ]
|
| +}
|
| +
|
| if (is_android) {
|
| android_library("settings_java") {
|
| visibility = [ "//blimp/client/*" ]
|
|
|