You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.2 KiB
54 lines
2.2 KiB
// Copyright (C) 2019 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.
|
|
|
|
package {
|
|
// http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// the below license kinds from "system_timezone_license":
|
|
// legacy_notice
|
|
default_applicable_licenses: ["system_timezone_license"],
|
|
}
|
|
|
|
// Module definition producing a tzlookup.xml prebuilt file in
|
|
// /system/etc/tzdata_module/etc/tz for standalone ART testing purposes.
|
|
// This is a temporary change needed until the ART Buildbot and Golem both
|
|
// fully support the Runtime APEX (see b/121117762). This module should
|
|
// never be shipped by default (i.e. should never be part of
|
|
// `PRODUCT_PACKAGE`.)
|
|
|
|
// TODO(b/121117762, b/129332183): Remove this module definition when
|
|
// the ART Buildbot and Golem have full support for the Time Zone Data APEX.
|
|
prebuilt_etc {
|
|
name: "tzlookup.xml-art-test-tzdata",
|
|
src: "tzlookup.xml",
|
|
filename_from_src: true,
|
|
sub_dir: "tzdata_module/etc/tz",
|
|
}
|
|
|
|
// Module definition producing a telephonylookup.xml prebuilt file in
|
|
// /system/etc/tzdata_module/etc/tz for standalone ART testing purposes.
|
|
// This is a temporary change needed until the ART Buildbot and Golem both
|
|
// fully support the Runtime APEX (see b/121117762). This module should
|
|
// never be shipped by default (i.e. should never be part of
|
|
// `PRODUCT_PACKAGE`.)
|
|
|
|
// TODO(b/121117762, b/129332183): Remove this module definition when
|
|
// the ART Buildbot and Golem have full support for the Time Zone Data APEX.
|
|
prebuilt_etc {
|
|
name: "telephonylookup.xml-art-test-tzdata",
|
|
src: "telephonylookup.xml",
|
|
filename_from_src: true,
|
|
sub_dir: "tzdata_module/etc/tz",
|
|
}
|