| Index: blimp/client/BUILD.gn
|
| diff --git a/blimp/client/BUILD.gn b/blimp/client/BUILD.gn
|
| index 093c71145b3206a7f23e4bd225168049298d1a11..85472488ba89556b5817b2bf638aab18222aecef 100644
|
| --- a/blimp/client/BUILD.gn
|
| +++ b/blimp/client/BUILD.gn
|
| @@ -91,6 +91,8 @@ source_set("app_unit_tests") {
|
|
|
| source_set("feature") {
|
| sources = [
|
| + "feature/geolocation_feature.cc",
|
| + "feature/geolocation_feature.h",
|
| "feature/ime_feature.cc",
|
| "feature/ime_feature.h",
|
| "feature/render_widget_feature.cc",
|
| @@ -108,6 +110,7 @@ source_set("feature") {
|
| "//cc",
|
| "//cc/proto",
|
| "//components/url_formatter",
|
| + "//device/geolocation:device_geolocation",
|
| "//net:net",
|
| "//skia",
|
| "//ui/base/ime:text_input_types",
|
| @@ -125,6 +128,8 @@ source_set("test_support") {
|
| sources = [
|
| "feature/mock_ime_feature_delegate.cc",
|
| "feature/mock_ime_feature_delegate.h",
|
| + "feature/mock_location_provider.cc",
|
| + "feature/mock_location_provider.h",
|
| "feature/mock_render_widget_feature_delegate.cc",
|
| "feature/mock_render_widget_feature_delegate.h",
|
| "session/test_client_session.cc",
|
| @@ -133,6 +138,7 @@ source_set("test_support") {
|
|
|
| deps = [
|
| ":session",
|
| + "//device/geolocation:device_geolocation",
|
| "//skia",
|
| "//testing/gmock",
|
| "//url",
|
| @@ -194,6 +200,7 @@ source_set("feature_unit_tests") {
|
|
|
| sources = [
|
| "feature/compositor/blimp_compositor_manager_unittest.cc",
|
| + "feature/geolocation_feature_unittest.cc",
|
| "feature/render_widget_feature_unittest.cc",
|
| "feature/tab_control_feature_unittest.cc",
|
| ]
|
| @@ -210,6 +217,7 @@ source_set("feature_unit_tests") {
|
| "//blimp/net:test_support",
|
| "//blimp/test:support",
|
| "//cc/proto",
|
| + "//device/geolocation:device_geolocation",
|
| "//net",
|
| "//net:test_support",
|
| "//skia",
|
|
|