| Index: services/device/time_zone_monitor/BUILD.gn
|
| diff --git a/services/device/time_zone_monitor/BUILD.gn b/services/device/time_zone_monitor/BUILD.gn
|
| index ecef1fc39f5ce69abdf7443fbbb6a443622cf027..14cba6d90be34b93b2859812fc36a639c4216e55 100644
|
| --- a/services/device/time_zone_monitor/BUILD.gn
|
| +++ b/services/device/time_zone_monitor/BUILD.gn
|
| @@ -61,4 +61,15 @@ if (is_android) {
|
| ]
|
| jni_package = "time_zone_monitor"
|
| }
|
| +
|
| + android_library("java") {
|
| + # Conceptually, this should be visible only to //services/device:java.
|
| + # However, various generated targets also need to see this target as a
|
| + # result of //services/device:java depending on it.
|
| + visibility = [ "//services/device:*" ]
|
| + java_files = [ "android/java/src/org/chromium/device/time_zone_monitor/TimeZoneMonitor.java" ]
|
| + deps = [
|
| + "//base:base_java",
|
| + ]
|
| + }
|
| }
|
|
|