mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
76 lines
1.8 KiB
Plaintext
76 lines
1.8 KiB
Plaintext
|
# Copyright 2016 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.
|
||
|
|
||
|
import("//build/config/features.gni")
|
||
|
|
||
|
if (is_android) {
|
||
|
import("//build/config/android/rules.gni") # For generate_jni().
|
||
|
}
|
||
|
|
||
|
source_set("time_zone_monitor") {
|
||
|
visibility = [ "//services/device:lib" ]
|
||
|
|
||
|
sources = [
|
||
|
"time_zone_monitor.cc",
|
||
|
"time_zone_monitor.h",
|
||
|
"time_zone_monitor_android.cc",
|
||
|
"time_zone_monitor_android.h",
|
||
|
"time_zone_monitor_chromeos.cc",
|
||
|
"time_zone_monitor_linux.cc",
|
||
|
"time_zone_monitor_mac.mm",
|
||
|
"time_zone_monitor_win.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//mojo/public/cpp/bindings",
|
||
|
"//third_party/icu",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//services/device/public/interfaces",
|
||
|
]
|
||
|
|
||
|
if (is_android) {
|
||
|
deps += [ ":time_zone_monitor_jni_headers" ]
|
||
|
}
|
||
|
|
||
|
if (is_win) {
|
||
|
deps += [ "//ui/gfx" ]
|
||
|
}
|
||
|
|
||
|
if (is_chromeos) {
|
||
|
deps += [ "//chromeos" ]
|
||
|
}
|
||
|
|
||
|
if (is_mac) {
|
||
|
libs = [ "Foundation.framework" ]
|
||
|
}
|
||
|
|
||
|
if (is_fuchsia) {
|
||
|
sources += [ "time_zone_monitor_fuchsia.cc" ]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (is_android) {
|
||
|
generate_jni("time_zone_monitor_jni_headers") {
|
||
|
visibility = [ ":time_zone_monitor" ]
|
||
|
sources = [
|
||
|
"android/java/src/org/chromium/device/time_zone_monitor/TimeZoneMonitor.java",
|
||
|
]
|
||
|
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",
|
||
|
]
|
||
|
}
|
||
|
}
|