naiveproxy/services/device/geolocation/BUILD.gn

27 lines
700 B
Plaintext
Raw Normal View History

2018-08-11 08:35:24 +03:00
# 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",
]
}