blob: 67a28bfd9b36d29bd5a54e0207f75cc5e2a8dc30 [file] [log] [blame]
// Copyright (C) 2020 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Proto library
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
java_library_host {
name: "geotz_validation_protos",
proto: {
type: "full",
include_dirs: ["external/protobuf/src"],
},
srcs: ["src/main/proto/**/*.proto"],
}
java_binary_host {
name: "geotz_geonames_comparison",
main_class: "com.android.timezone.location.validation.GeonamesComparison",
srcs: [
"src/main/java/**/*.java",
],
static_libs: [
"geotz_lookup",
"geotz_validation_protos",
"s2-geometry-library-java",
"tzids",
],
}