mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
27 lines
700 B
Plaintext
27 lines
700 B
Plaintext
|
# Copyright 2017 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")
|
||
|
|
||
|
source_set("geolocation") {
|
||
|
visibility = [ "//services/device:*" ]
|
||
|
|
||
|
sources = [
|
||
|
"public_ip_address_geolocation_provider.cc",
|
||
|
"public_ip_address_geolocation_provider.h",
|
||
|
"public_ip_address_geolocator.cc",
|
||
|
"public_ip_address_geolocator.h",
|
||
|
"public_ip_address_location_notifier.cc",
|
||
|
"public_ip_address_location_notifier.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//device/geolocation",
|
||
|
"//mojo/public/cpp/bindings",
|
||
|
"//net",
|
||
|
"//services/device/public/mojom",
|
||
|
]
|
||
|
}
|