Home | History | Annotate | Download | only in core
      1 // Copyright (C) 2015 The Android Open Source Project
      2 //
      3 // Licensed under the Apache License, Version 2.0 (the "License");
      4 // you may not use this file except in compliance with the License.
      5 // You may obtain a copy of the License at
      6 //
      7 //      http://www.apache.org/licenses/LICENSE-2.0
      8 //
      9 // Unless required by applicable law or agreed to in writing, software
     10 // distributed under the License is distributed on an "AS IS" BASIS,
     11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 // See the License for the specific language governing permissions and
     13 // limitations under the License.
     14 
     15 // Library of classes for handling time zone distros. Used on-device for
     16 // handling distros and within CTS tests.
     17 //
     18 // This is distinct from time_zone_distro_unbundled. It should be used
     19 // for platform code as it avoids circular dependencies when stubs targets
     20 // need to build framework (as appears to be the case in aosp/master).
     21 // Also used for host-side tests.
     22 java_library_static {
     23     name: "time_zone_distro",
     24     host_supported: true,
     25 
     26     srcs: ["src/main/**/*.java"],
     27 }
     28 
     29 // Library of classes for handling time zone distros. Used in unbundled
     30 // cases. Same as above, except dependent on system_current stubs.
     31 java_library_static {
     32     name: "time_zone_distro_unbundled",
     33 
     34     srcs: ["src/main/**/*.java"],
     35     sdk_version: "system_current",
     36 }
     37 
     38 // Tests for time_zone_distro code.
     39 java_library_static {
     40     name: "time_zone_distro-tests",
     41 
     42     srcs: ["src/test/**/*.java"],
     43     static_libs: [
     44         "time_zone_distro",
     45         "junit",
     46     ],
     47 }
     48