blob: 493cf51174d39e73bd172d4fba0ea52fe9e9c7ba [file] [log] [blame]
Bob Badoura060d412021-02-12 14:45:18 -08001package {
2 default_applicable_licenses: ["external_kotlinx.coroutines_license"],
3}
4
5// Added automatically by a large-scale-change that took the approach of
6// 'apply every license found to every target'. While this makes sure we respect
7// every license restriction, it may not be entirely correct.
8//
9// e.g. GPL in an MIT project might only apply to the contrib/ directory.
10//
11// Please consider splitting the single license below into multiple licenses,
12// taking care not to lose any license_kind information, and overriding the
13// default license using the 'licenses: [...]' property on targets as needed.
14//
15// For unused files, consider creating a 'fileGroup' with "//visibility:private"
16// to attach the license to, and including a comment whether the files may be
17// used in the current project.
18//
19// large-scale-change included anything that looked like it might be a license
20// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
21//
22// Please consider removing redundant or irrelevant files from 'license_text:'.
23// See: http://go/android-license-faq
24license {
25 name: "external_kotlinx.coroutines_license",
26 visibility: [":__subpackages__"],
27 license_kinds: [
28 "SPDX-license-identifier-Apache-2.0",
29 "SPDX-license-identifier-MIT",
30 ],
31 license_text: [
32 "LICENSE",
33 "LICENSE.txt",
34 "license/**/*",
35 ],
36}
37
Colin Cross905a53f2020-06-25 19:12:23 -070038java_library {
39 name: "kotlinx_coroutines",
40 host_supported: true,
Cole Faust4963ba02022-06-28 15:59:28 -070041 sdk_version: "core_current",
42 min_sdk_version: "28",
Colin Cross905a53f2020-06-25 19:12:23 -070043 srcs: ["kotlinx-coroutines-core/jvm/src/**/*.kt"],
44 common_srcs: ["kotlinx-coroutines-core/common/src/**/*.kt"],
45 exclude_srcs: [
46 "kotlinx-coroutines-core/jvm/src/debug/**/*.kt",
47 "kotlinx-coroutines-core/jvm/src/test_/TestCoroutineContext.kt",
48 ],
Colin Cross361f4f62021-08-03 13:36:05 -070049 java_resource_dirs: ["kotlinx-coroutines-core/jvm/resources"],
Colin Cross905a53f2020-06-25 19:12:23 -070050 static_libs: [
51 "kotlinx_atomicfu",
52 ],
53 kotlincflags: [
54 "-Xmulti-platform",
Colin Cross53eee302022-06-23 15:36:42 -070055 "-opt-in=kotlin.RequiresOptIn",
56 "-opt-in=kotlin.experimental.ExperimentalTypeInference",
57 "-opt-in=kotlin.ExperimentalMultiplatform",
58 "-opt-in=kotlinx.coroutines.DelicateCoroutinesApi",
59 "-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
60 "-opt-in=kotlinx.coroutines.ObsoleteCoroutinesApi",
61 "-opt-in=kotlinx.coroutines.InternalCoroutinesApi",
62 "-opt-in=kotlinx.coroutines.FlowPreview",
Colin Cross905a53f2020-06-25 19:12:23 -070063 ],
Colin Crossb5da2582021-07-30 16:43:21 -070064 apex_available: [
65 "//apex_available:platform",
66 "//apex_available:anyapex"
67 ],
Colin Cross905a53f2020-06-25 19:12:23 -070068}
Colin Cross9b946d02020-07-17 15:12:08 -070069
70java_library {
71 name: "kotlinx_coroutines_android",
Cole Faust4963ba02022-06-28 15:59:28 -070072 sdk_version: "current",
73 min_sdk_version: "28",
Colin Cross9b946d02020-07-17 15:12:08 -070074 srcs: ["ui/kotlinx-coroutines-android/src/**/*.kt"],
Colin Cross361f4f62021-08-03 13:36:05 -070075 java_resource_dirs: ["ui/kotlinx-coroutines-android/resources"],
Colin Cross9b946d02020-07-17 15:12:08 -070076 kotlincflags: [
Colin Cross53eee302022-06-23 15:36:42 -070077 "-opt-in=kotlinx.coroutines.InternalCoroutinesApi",
78 "-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
Colin Cross9b946d02020-07-17 15:12:08 -070079 ],
80 libs: [
81 "kotlinx_coroutines",
82 "androidx.annotation_annotation",
83 ],
Colin Crossb5da2582021-07-30 16:43:21 -070084 apex_available: [
85 "//apex_available:platform",
86 "//apex_available:anyapex"
87 ],
Colin Cross9b946d02020-07-17 15:12:08 -070088}
Colin Cross39c97452021-07-30 12:16:41 -070089
90java_library {
91 name: "kotlinx_coroutines_test",
92 host_supported: true,
93 srcs: ["kotlinx-coroutines-test/src/**/*.kt"],
Colin Cross361f4f62021-08-03 13:36:05 -070094 java_resource_dirs: ["kotlinx-coroutines-test/resources"],
Colin Cross39c97452021-07-30 12:16:41 -070095 kotlincflags: [
Colin Cross53eee302022-06-23 15:36:42 -070096 "-opt-in=kotlinx.coroutines.InternalCoroutinesApi",
97 "-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
Colin Cross39c97452021-07-30 12:16:41 -070098 ],
99 libs: [
100 "kotlinx_coroutines",
101 ],
Colin Crossb5da2582021-07-30 16:43:21 -0700102 apex_available: [
103 "//apex_available:platform",
104 "//apex_available:anyapex"
105 ],
106}
107
108// Temporary aliases for kotlinx-coroutines-core, kotlinx-coroutines-core-jvm and kotlinx-coroutines-android
109
110java_library {
111 name: "kotlinx-coroutines-core",
112 host_supported: true,
Cole Faust4963ba02022-06-28 15:59:28 -0700113 sdk_version: "core_current",
114 min_sdk_version: "28",
Colin Crossb5da2582021-07-30 16:43:21 -0700115 static_libs: ["kotlinx_coroutines"],
116 apex_available: [
117 "//apex_available:platform",
118 "//apex_available:anyapex"
119 ],
120}
121
122java_library {
123 name: "kotlinx-coroutines-core-jvm",
124 host_supported: true,
Cole Faust4963ba02022-06-28 15:59:28 -0700125 sdk_version: "core_current",
126 min_sdk_version: "28",
Colin Crossb5da2582021-07-30 16:43:21 -0700127 static_libs: ["kotlinx_coroutines"],
128 apex_available: [
129 "//apex_available:platform",
130 "//apex_available:anyapex"
131 ],
132}
133
134java_library {
135 name: "kotlinx-coroutines-android",
Cole Faust4963ba02022-06-28 15:59:28 -0700136 sdk_version: "current",
137 min_sdk_version: "28",
Colin Crossb5da2582021-07-30 16:43:21 -0700138 static_libs: [
139 "kotlinx_coroutines_android",
140 "kotlinx_coroutines",
141 ],
142 apex_available: [
143 "//apex_available:platform",
144 "//apex_available:anyapex"
145 ],
Colin Cross39c97452021-07-30 12:16:41 -0700146}
Anubha Kushwaha76874392022-04-13 21:56:03 +0000147
148filegroup {
149 name: "kotlinx-coroutines-play-services",
150 srcs: ["integration/kotlinx-coroutines-play-services/src/**/*.kt"],
151}