blob: ce531ac3158ced617c3d2afa34b0856ca4457e45 [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,
41 // This should be "core_current", but that causes nullability issues
42 // for returned platform types that are explicitly marked @Nullable in
43 // SDK 29 and current.
44 sdk_version: "28",
45 srcs: ["kotlinx-coroutines-core/jvm/src/**/*.kt"],
46 common_srcs: ["kotlinx-coroutines-core/common/src/**/*.kt"],
47 exclude_srcs: [
48 "kotlinx-coroutines-core/jvm/src/debug/**/*.kt",
49 "kotlinx-coroutines-core/jvm/src/test_/TestCoroutineContext.kt",
50 ],
51 static_libs: [
52 "kotlinx_atomicfu",
53 ],
54 kotlincflags: [
55 "-Xmulti-platform",
56 "-Xuse-experimental=kotlin.ExperimentalMultiplatform",
57 "-Xuse-experimental=kotlin.Experimental",
58 "-Xuse-experimental=kotlin.experimental.ExperimentalTypeInference",
59 "-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
60 "-Xuse-experimental=kotlinx.coroutines.FlowPreview",
61 "-Xuse-experimental=kotlinx.coroutines.ObsoleteCoroutinesApi",
62 "-Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi",
63 ],
64}
Colin Cross9b946d02020-07-17 15:12:08 -070065
66java_library {
67 name: "kotlinx_coroutines_android",
68 sdk_version: "28",
69 srcs: ["ui/kotlinx-coroutines-android/src/**/*.kt"],
70 kotlincflags: [
71 "-Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi",
72 "-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
73 ],
74 libs: [
75 "kotlinx_coroutines",
76 "androidx.annotation_annotation",
77 ],
78}