2019-12-03 16:25:00 +01:00
|
|
|
// 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 sdk
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2020-07-09 18:32:57 +02:00
|
|
|
|
|
|
|
"android/soong/java"
|
2019-12-03 16:25:00 +01:00
|
|
|
)
|
|
|
|
|
2019-11-30 18:49:09 +01:00
|
|
|
func testSdkWithJava(t *testing.T, bp string) *testSdkResult {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
fs := map[string][]byte{
|
|
|
|
"Test.java": nil,
|
2020-06-24 13:10:42 +02:00
|
|
|
"resource.test": nil,
|
2019-11-30 18:49:09 +01:00
|
|
|
"aidl/foo/bar/Test.aidl": nil,
|
2020-02-10 14:37:10 +01:00
|
|
|
|
2020-07-09 18:32:57 +02:00
|
|
|
// For java_import
|
|
|
|
"prebuilt.jar": nil,
|
|
|
|
|
2020-02-10 14:37:10 +01:00
|
|
|
// For java_sdk_library
|
|
|
|
"api/current.txt": nil,
|
|
|
|
"api/removed.txt": nil,
|
|
|
|
"api/system-current.txt": nil,
|
|
|
|
"api/system-removed.txt": nil,
|
|
|
|
"api/test-current.txt": nil,
|
|
|
|
"api/test-removed.txt": nil,
|
2020-04-28 15:13:56 +02:00
|
|
|
"api/module-lib-current.txt": nil,
|
|
|
|
"api/module-lib-removed.txt": nil,
|
2020-06-02 14:00:08 +02:00
|
|
|
"api/system-server-current.txt": nil,
|
|
|
|
"api/system-server-removed.txt": nil,
|
2020-02-10 14:37:10 +01:00
|
|
|
"build/soong/scripts/gen-java-current-api-files.sh": nil,
|
2020-09-11 12:55:00 +02:00
|
|
|
"docs/known_doctags": nil,
|
2020-12-21 18:10:01 +01:00
|
|
|
"100/public/api/myjavalib.txt": nil,
|
|
|
|
"100/public/api/myjavalib-removed.txt": nil,
|
|
|
|
"100/system/api/myjavalib.txt": nil,
|
|
|
|
"100/system/api/myjavalib-removed.txt": nil,
|
|
|
|
"100/module-lib/api/myjavalib.txt": nil,
|
|
|
|
"100/module-lib/api/myjavalib-removed.txt": nil,
|
|
|
|
"100/system-server/api/myjavalib.txt": nil,
|
|
|
|
"100/system-server/api/myjavalib-removed.txt": nil,
|
2019-11-30 18:49:09 +01:00
|
|
|
}
|
2020-02-10 14:37:10 +01:00
|
|
|
|
|
|
|
// for java_sdk_library tests
|
|
|
|
bp = `
|
|
|
|
java_system_modules_import {
|
|
|
|
name: "core-current-stubs-system-modules",
|
|
|
|
}
|
|
|
|
java_system_modules_import {
|
2020-07-09 19:03:41 +02:00
|
|
|
name: "stable-core-platform-api-stubs-system-modules",
|
2020-02-10 14:37:10 +01:00
|
|
|
}
|
|
|
|
java_import {
|
2020-07-09 19:03:41 +02:00
|
|
|
name: "stable.core.platform.api.stubs",
|
2020-02-10 14:37:10 +01:00
|
|
|
}
|
2020-04-28 15:15:17 +02:00
|
|
|
java_import {
|
2020-02-10 14:37:10 +01:00
|
|
|
name: "android_stubs_current",
|
|
|
|
}
|
2020-04-28 15:15:17 +02:00
|
|
|
java_import {
|
2020-02-10 14:37:10 +01:00
|
|
|
name: "android_system_stubs_current",
|
|
|
|
}
|
2020-04-28 15:15:17 +02:00
|
|
|
java_import {
|
2020-02-10 14:37:10 +01:00
|
|
|
name: "android_test_stubs_current",
|
|
|
|
}
|
2020-04-28 15:13:56 +02:00
|
|
|
java_import {
|
|
|
|
name: "android_module_lib_stubs_current",
|
|
|
|
}
|
2020-06-02 14:00:08 +02:00
|
|
|
java_import {
|
|
|
|
name: "android_system_server_stubs_current",
|
|
|
|
}
|
2020-02-10 14:37:10 +01:00
|
|
|
java_import {
|
|
|
|
name: "core-lambda-stubs",
|
|
|
|
sdk_version: "none",
|
|
|
|
}
|
|
|
|
java_import {
|
|
|
|
name: "ext",
|
|
|
|
sdk_version: "none",
|
|
|
|
}
|
|
|
|
java_import {
|
|
|
|
name: "framework",
|
|
|
|
sdk_version: "none",
|
|
|
|
}
|
2020-12-21 18:10:01 +01:00
|
|
|
prebuilt_apis {
|
|
|
|
name: "sdk",
|
|
|
|
api_dirs: ["100"],
|
|
|
|
}
|
2020-02-10 14:37:10 +01:00
|
|
|
` + bp
|
|
|
|
|
2019-11-30 18:49:09 +01:00
|
|
|
return testSdkWithFs(t, bp, fs)
|
|
|
|
}
|
|
|
|
|
2019-12-03 16:25:00 +01:00
|
|
|
// Contains tests for SDK members provided by the java package.
|
|
|
|
|
2020-07-09 18:32:57 +02:00
|
|
|
func TestSdkDependsOnSourceEvenWhenPrebuiltPreferred(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_header_libs: ["sdkmember"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "sdkmember",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "sdkmember",
|
|
|
|
prefer: true,
|
|
|
|
jars: ["prebuilt.jar"],
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
// Make sure that the mysdk module depends on "sdkmember" and not "prebuilt_sdkmember".
|
|
|
|
java.CheckModuleDependencies(t, result.ctx, "mysdk", "android_common", []string{"sdkmember"})
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "mysdk_sdkmember@current",
|
|
|
|
sdk_member_name: "sdkmember",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-07-09 18:32:57 +02:00
|
|
|
jars: ["java/sdkmember.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "sdkmember",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-07-09 18:32:57 +02:00
|
|
|
jars: ["java/sdkmember.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-07-09 18:32:57 +02:00
|
|
|
java_header_libs: ["mysdk_sdkmember@current"],
|
|
|
|
}
|
|
|
|
`))
|
|
|
|
}
|
|
|
|
|
2019-12-03 16:25:00 +01:00
|
|
|
func TestBasicSdkWithJavaLibrary(t *testing.T) {
|
2019-11-30 18:49:09 +01:00
|
|
|
result := testSdkWithJava(t, `
|
2019-12-03 16:25:00 +01:00
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
apex_available tracks static dependencies
This change fixes a bug that apex_available is not enforced for static
dependencies. For example, a module with 'apex_available:
["//apex_available:platform"]' was able to be statically linked to any
APEX. This was happening because the check was done on the modules that
are actually installed to an APEX. Static dependencies of the modules
were not counted as they are not installed to the APEX as files.
Fixing this bug by doing the check by traversing the tree in the method
checkApexAvailability.
This change includes a few number of related changes:
1) DepIsInSameApex implementation for cc.Module was changed as well.
Previuosly, it returned false only when the dependency is actually a
stub variant of a lib. Now, it returns false when the dependency has one
or more stub variants. To understand why, we need to recall that when
there is a dependency to a lib having stubs, we actually create two
dependencies: to the non-stub variant and to the stub variant during the
DepsMutator phase. And later in the build action generation phase, we
choose one of them depending on the context. Also recall that an APEX
variant is created only when DepIsInSameApex returns true. Given these,
with the previous implementatin of DepIsInSameApex, we did create apex
variants of the non-stub variant of the dependency, while not creating
the apex variant for the stub variant. This is not right; we needlessly
created the apex variant. The extra apex variant has caused no harm so
far, but since the apex_available check became more correct, it actually
breaks the build. To fix the issue, we stop creating the APEX variant
both for non-stub and stub variants.
2) platform variant is created regardless of the apex_available value.
This is required for the case when a library X that provides stub is in
an APEX A and is configured to be available only for A. In that case,
libs in other APEX can't use the stub library since the stub library is
mutated only for apex A. By creating the platform variant for the stub
library, it can be used from outside as the default dependency variation
is set to the platform variant when creating the APEX variations.
3) The ApexAvailableWhitelist is added with the dependencies that were
revealed with this change.
Exempt-From-Owner-Approval: cherry-pick from internal
Bug: 147671264
Test: m
Merged-In: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
(cherry picked from commit fa89944c79f19552e906b41fd03a4981903eee7e)
Change-Id: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
2020-01-30 18:49:53 +01:00
|
|
|
java_header_libs: ["sdkmember"],
|
2019-12-03 16:25:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@1",
|
2019-12-05 12:25:53 +01:00
|
|
|
java_header_libs: ["sdkmember_mysdk_1"],
|
2019-12-03 16:25:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@2",
|
2019-12-05 12:25:53 +01:00
|
|
|
java_header_libs: ["sdkmember_mysdk_2"],
|
2019-12-03 16:25:00 +01:00
|
|
|
}
|
|
|
|
|
apex_available tracks static dependencies
This change fixes a bug that apex_available is not enforced for static
dependencies. For example, a module with 'apex_available:
["//apex_available:platform"]' was able to be statically linked to any
APEX. This was happening because the check was done on the modules that
are actually installed to an APEX. Static dependencies of the modules
were not counted as they are not installed to the APEX as files.
Fixing this bug by doing the check by traversing the tree in the method
checkApexAvailability.
This change includes a few number of related changes:
1) DepIsInSameApex implementation for cc.Module was changed as well.
Previuosly, it returned false only when the dependency is actually a
stub variant of a lib. Now, it returns false when the dependency has one
or more stub variants. To understand why, we need to recall that when
there is a dependency to a lib having stubs, we actually create two
dependencies: to the non-stub variant and to the stub variant during the
DepsMutator phase. And later in the build action generation phase, we
choose one of them depending on the context. Also recall that an APEX
variant is created only when DepIsInSameApex returns true. Given these,
with the previous implementatin of DepIsInSameApex, we did create apex
variants of the non-stub variant of the dependency, while not creating
the apex variant for the stub variant. This is not right; we needlessly
created the apex variant. The extra apex variant has caused no harm so
far, but since the apex_available check became more correct, it actually
breaks the build. To fix the issue, we stop creating the APEX variant
both for non-stub and stub variants.
2) platform variant is created regardless of the apex_available value.
This is required for the case when a library X that provides stub is in
an APEX A and is configured to be available only for A. In that case,
libs in other APEX can't use the stub library since the stub library is
mutated only for apex A. By creating the platform variant for the stub
library, it can be used from outside as the default dependency variation
is set to the platform variant when creating the APEX variations.
3) The ApexAvailableWhitelist is added with the dependencies that were
revealed with this change.
Exempt-From-Owner-Approval: cherry-pick from internal
Bug: 147671264
Test: m
Merged-In: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
(cherry picked from commit fa89944c79f19552e906b41fd03a4981903eee7e)
Change-Id: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
2020-01-30 18:49:53 +01:00
|
|
|
java_library {
|
2019-12-03 16:25:00 +01:00
|
|
|
name: "sdkmember",
|
apex_available tracks static dependencies
This change fixes a bug that apex_available is not enforced for static
dependencies. For example, a module with 'apex_available:
["//apex_available:platform"]' was able to be statically linked to any
APEX. This was happening because the check was done on the modules that
are actually installed to an APEX. Static dependencies of the modules
were not counted as they are not installed to the APEX as files.
Fixing this bug by doing the check by traversing the tree in the method
checkApexAvailability.
This change includes a few number of related changes:
1) DepIsInSameApex implementation for cc.Module was changed as well.
Previuosly, it returned false only when the dependency is actually a
stub variant of a lib. Now, it returns false when the dependency has one
or more stub variants. To understand why, we need to recall that when
there is a dependency to a lib having stubs, we actually create two
dependencies: to the non-stub variant and to the stub variant during the
DepsMutator phase. And later in the build action generation phase, we
choose one of them depending on the context. Also recall that an APEX
variant is created only when DepIsInSameApex returns true. Given these,
with the previous implementatin of DepIsInSameApex, we did create apex
variants of the non-stub variant of the dependency, while not creating
the apex variant for the stub variant. This is not right; we needlessly
created the apex variant. The extra apex variant has caused no harm so
far, but since the apex_available check became more correct, it actually
breaks the build. To fix the issue, we stop creating the APEX variant
both for non-stub and stub variants.
2) platform variant is created regardless of the apex_available value.
This is required for the case when a library X that provides stub is in
an APEX A and is configured to be available only for A. In that case,
libs in other APEX can't use the stub library since the stub library is
mutated only for apex A. By creating the platform variant for the stub
library, it can be used from outside as the default dependency variation
is set to the platform variant when creating the APEX variations.
3) The ApexAvailableWhitelist is added with the dependencies that were
revealed with this change.
Exempt-From-Owner-Approval: cherry-pick from internal
Bug: 147671264
Test: m
Merged-In: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
(cherry picked from commit fa89944c79f19552e906b41fd03a4981903eee7e)
Change-Id: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
2020-01-30 18:49:53 +01:00
|
|
|
srcs: ["Test.java"],
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
2019-12-03 16:25:00 +01:00
|
|
|
host_supported: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "sdkmember_mysdk_1",
|
|
|
|
sdk_member_name: "sdkmember",
|
|
|
|
host_supported: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "sdkmember_mysdk_2",
|
|
|
|
sdk_member_name: "sdkmember",
|
|
|
|
host_supported: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
libs: ["sdkmember"],
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
host_supported: true,
|
2020-01-10 16:12:39 +01:00
|
|
|
apex_available: [
|
|
|
|
"myapex",
|
|
|
|
"myapex2",
|
|
|
|
],
|
2019-12-03 16:25:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
apex {
|
|
|
|
name: "myapex",
|
|
|
|
java_libs: ["myjavalib"],
|
|
|
|
uses_sdks: ["mysdk@1"],
|
|
|
|
key: "myapex.key",
|
|
|
|
certificate: ":myapex.cert",
|
2021-02-16 12:40:16 +01:00
|
|
|
updatable: false,
|
2019-12-03 16:25:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
apex {
|
|
|
|
name: "myapex2",
|
|
|
|
java_libs: ["myjavalib"],
|
|
|
|
uses_sdks: ["mysdk@2"],
|
|
|
|
key: "myapex.key",
|
|
|
|
certificate: ":myapex.cert",
|
2021-02-16 12:40:16 +01:00
|
|
|
updatable: false,
|
2019-12-03 16:25:00 +01:00
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-07-22 14:00:54 +02:00
|
|
|
sdkMemberV1 := result.ctx.ModuleForTests("sdkmember_mysdk_1", "android_common").Rule("combineJar").Output
|
|
|
|
sdkMemberV2 := result.ctx.ModuleForTests("sdkmember_mysdk_2", "android_common").Rule("combineJar").Output
|
2019-12-03 16:25:00 +01:00
|
|
|
|
Reland: Deduplicate APEX variants that would build identically
APEX variants that share the same SDK version and updatability
almost always use identical command line arguments to build but
with different intermediates directories. This causes unnecessary
build time and disk space for duplicated work.
Deduplicate APEX variants that would build identically. Create
aliases from the per-APEX variations to the new shared variations
so that the APEX modules can continue to depend on them via the
APEX name as the variation.
This has one significant change in behavior. Before this change,
if an APEX had two libraries in its direct dependencies and one
of those libraries depended on the other, and the second library
had stubs, then the first library would depend on the implementation
of the second library and not the stubs. After this change, if
the first library is also present in a second APEX but the second
library is not, then the common variant shared between the two
APEXes would use the stubs, not the implementation.
In a correctly configured set of build rules this change will
be irrelevant, because if the compilation worked for the second
APEX using stubs then it will work for the common variant using
stubs. However, if an incorrect change to the build rules is
made this could lead to confusing errors, as a previously-working
common variant could suddenly stop building when a module is added
to a new APEX without its dependencies that require implementation
APIs to compile.
This change reduces the number of modules in an AOSP arm64-userdebug
build by 3% (52242 to 50586), reduces the number of variants of the
libcutils module from 74 to 53, and reduces the number of variants
of the massive libart[d] modules from 44 to 32.
This relands I0529837476a253c32b3dfb98dcccf107427c742c with a fix
to always mark permissions XML files of java_sdk_library modules as
unique per apex since they contain the APEX filename, and a fix
to UpdateUniqueApexVariationsForDeps to check ApexInfo.InApexes
instead of DepIsInSameApex to check if two modules are in the same
apex to account for a module that depends on another in a way that
doesn't normally include the dependency in the APEX (e.g. a libs
property), but the dependency is directly included in the APEX.
Bug: 164216768
Test: go test ./build/soong/apex/...
Change-Id: I2ae170601f764e5b88d0be2e0e6adc84e3a4d9cc
2020-08-11 21:17:01 +02:00
|
|
|
javalibForMyApex := result.ctx.ModuleForTests("myjavalib", "android_common_apex10000_mysdk_1")
|
|
|
|
javalibForMyApex2 := result.ctx.ModuleForTests("myjavalib", "android_common_apex10000_mysdk_2")
|
2019-12-03 16:25:00 +01:00
|
|
|
|
|
|
|
// Depending on the uses_sdks value, different libs are linked
|
|
|
|
ensureListContains(t, pathsToStrings(javalibForMyApex.Rule("javac").Implicits), sdkMemberV1.String())
|
|
|
|
ensureListContains(t, pathsToStrings(javalibForMyApex2.Rule("javac").Implicits), sdkMemberV2.String())
|
|
|
|
}
|
|
|
|
|
2019-12-05 12:25:53 +01:00
|
|
|
func TestSnapshotWithJavaHeaderLibrary(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_header_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
aidl: {
|
|
|
|
export_include_dirs: ["aidl"],
|
|
|
|
},
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
host_supported: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-02-25 20:26:33 +01:00
|
|
|
result.CheckSnapshot("mysdk", "",
|
2019-12-05 12:25:53 +01:00
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-05 12:25:53 +01:00
|
|
|
jars: ["java/myjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-05 12:25:53 +01:00
|
|
|
jars: ["java/myjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2019-12-05 12:25:53 +01:00
|
|
|
java_header_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib/android_common/turbine-combined/myjavalib.jar -> java/myjavalib.jar
|
|
|
|
aidl/foo/bar/Test.aidl -> aidl/aidl/foo/bar/Test.aidl
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHostSnapshotWithJavaHeaderLibrary(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
java_header_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
aidl: {
|
|
|
|
export_include_dirs: ["aidl"],
|
|
|
|
},
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-02-25 20:26:33 +01:00
|
|
|
result.CheckSnapshot("mysdk", "",
|
2019-12-05 12:25:53 +01:00
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-05 12:25:53 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/myjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-05 12:25:53 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/myjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2019-12-05 12:25:53 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
java_header_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib/linux_glibc_common/javac/myjavalib.jar -> java/myjavalib.jar
|
|
|
|
aidl/foo/bar/Test.aidl -> aidl/aidl/foo/bar/Test.aidl
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-03-02 11:16:35 +01:00
|
|
|
func TestDeviceAndHostSnapshotWithJavaHeaderLibrary(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
host_supported: true,
|
|
|
|
java_header_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
host_supported: true,
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-03-02 11:16:35 +01:00
|
|
|
host_supported: true,
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
jars: ["java/android/myjavalib.jar"],
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
jars: ["java/linux_glibc/myjavalib.jar"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-03-02 11:16:35 +01:00
|
|
|
host_supported: true,
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
jars: ["java/android/myjavalib.jar"],
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
jars: ["java/linux_glibc/myjavalib.jar"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-03-02 11:16:35 +01:00
|
|
|
host_supported: true,
|
|
|
|
java_header_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib/android_common/turbine-combined/myjavalib.jar -> java/android/myjavalib.jar
|
|
|
|
.intermediates/myjavalib/linux_glibc_common/javac/myjavalib.jar -> java/linux_glibc/myjavalib.jar
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-12-05 12:25:53 +01:00
|
|
|
func TestSnapshotWithJavaImplLibrary(t *testing.T) {
|
2019-11-30 18:49:09 +01:00
|
|
|
result := testSdkWithJava(t, `
|
2019-12-16 18:43:48 +01:00
|
|
|
module_exports {
|
|
|
|
name: "myexports",
|
2019-12-03 16:25:00 +01:00
|
|
|
java_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
srcs: ["Test.java"],
|
2020-06-24 13:10:42 +02:00
|
|
|
java_resources: ["resource.txt"],
|
2019-12-03 16:25:00 +01:00
|
|
|
aidl: {
|
|
|
|
export_include_dirs: ["aidl"],
|
|
|
|
},
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
host_supported: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-02-25 20:26:33 +01:00
|
|
|
result.CheckSnapshot("myexports", "",
|
2019-12-03 16:25:00 +01:00
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
2019-12-16 18:43:48 +01:00
|
|
|
name: "myexports_myjavalib@current",
|
2019-12-03 16:25:00 +01:00
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-03 16:25:00 +01:00
|
|
|
jars: ["java/myjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-03 16:25:00 +01:00
|
|
|
jars: ["java/myjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
2019-12-16 18:43:48 +01:00
|
|
|
module_exports_snapshot {
|
|
|
|
name: "myexports@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2019-12-16 18:43:48 +01:00
|
|
|
java_libs: ["myexports_myjavalib@current"],
|
2019-12-03 16:25:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
2020-06-24 13:10:42 +02:00
|
|
|
.intermediates/myjavalib/android_common/withres/myjavalib.jar -> java/myjavalib.jar
|
2019-12-03 16:25:00 +01:00
|
|
|
aidl/foo/bar/Test.aidl -> aidl/aidl/foo/bar/Test.aidl
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-12-08 18:48:25 +01:00
|
|
|
func TestSnapshotWithJavaBootLibrary(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
module_exports {
|
|
|
|
name: "myexports",
|
|
|
|
java_boot_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
java_resources: ["resource.txt"],
|
|
|
|
// The aidl files should not be copied to the snapshot because a java_boot_libs member is not
|
|
|
|
// intended to be used for compiling Java, only for accessing the dex implementation jar.
|
|
|
|
aidl: {
|
|
|
|
export_include_dirs: ["aidl"],
|
|
|
|
},
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("myexports", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myexports_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
|
|
|
visibility: ["//visibility:public"],
|
|
|
|
apex_available: ["//apex_available:platform"],
|
2021-02-04 12:15:34 +01:00
|
|
|
jars: ["java/myjavalib.jar"],
|
2020-12-08 18:48:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
|
|
|
visibility: ["//visibility:public"],
|
|
|
|
apex_available: ["//apex_available:platform"],
|
2021-02-04 12:15:34 +01:00
|
|
|
jars: ["java/myjavalib.jar"],
|
2020-12-08 18:48:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module_exports_snapshot {
|
|
|
|
name: "myexports@current",
|
|
|
|
visibility: ["//visibility:public"],
|
|
|
|
java_boot_libs: ["myexports_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
2021-02-04 12:15:34 +01:00
|
|
|
.intermediates/myjavalib/android_common/withres/myjavalib.jar -> java/myjavalib.jar
|
2020-12-08 18:48:25 +01:00
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-12-05 12:25:53 +01:00
|
|
|
func TestHostSnapshotWithJavaImplLibrary(t *testing.T) {
|
2019-11-30 18:49:09 +01:00
|
|
|
result := testSdkWithJava(t, `
|
2019-12-16 18:43:48 +01:00
|
|
|
module_exports {
|
|
|
|
name: "myexports",
|
2019-12-03 16:25:00 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
java_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
aidl: {
|
|
|
|
export_include_dirs: ["aidl"],
|
|
|
|
},
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-02-25 20:26:33 +01:00
|
|
|
result.CheckSnapshot("myexports", "",
|
2019-12-03 16:25:00 +01:00
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
2019-12-16 18:43:48 +01:00
|
|
|
name: "myexports_myjavalib@current",
|
2019-12-03 16:25:00 +01:00
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-03 16:25:00 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/myjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-03 16:25:00 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/myjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
2019-12-16 18:43:48 +01:00
|
|
|
module_exports_snapshot {
|
|
|
|
name: "myexports@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2019-12-03 16:25:00 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
2019-12-16 18:43:48 +01:00
|
|
|
java_libs: ["myexports_myjavalib@current"],
|
2019-12-03 16:25:00 +01:00
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib/linux_glibc_common/javac/myjavalib.jar -> java/myjavalib.jar
|
|
|
|
aidl/foo/bar/Test.aidl -> aidl/aidl/foo/bar/Test.aidl
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-12-03 19:06:47 +01:00
|
|
|
func TestSnapshotWithJavaTest(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
module_exports {
|
|
|
|
name: "myexports",
|
|
|
|
java_tests: ["myjavatests"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_test {
|
|
|
|
name: "myjavatests",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
host_supported: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-02-25 20:26:33 +01:00
|
|
|
result.CheckSnapshot("myexports", "",
|
2019-12-03 19:06:47 +01:00
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_test_import {
|
|
|
|
name: "myexports_myjavatests@current",
|
|
|
|
sdk_member_name: "myjavatests",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-03 19:06:47 +01:00
|
|
|
jars: ["java/myjavatests.jar"],
|
|
|
|
test_config: "java/myjavatests-AndroidTest.xml",
|
|
|
|
}
|
|
|
|
|
|
|
|
java_test_import {
|
|
|
|
name: "myjavatests",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-03 19:06:47 +01:00
|
|
|
jars: ["java/myjavatests.jar"],
|
|
|
|
test_config: "java/myjavatests-AndroidTest.xml",
|
|
|
|
}
|
|
|
|
|
|
|
|
module_exports_snapshot {
|
|
|
|
name: "myexports@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2019-12-03 19:06:47 +01:00
|
|
|
java_tests: ["myexports_myjavatests@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavatests/android_common/javac/myjavatests.jar -> java/myjavatests.jar
|
|
|
|
.intermediates/myjavatests/android_common/myjavatests.config -> java/myjavatests-AndroidTest.xml
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHostSnapshotWithJavaTest(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
module_exports {
|
|
|
|
name: "myexports",
|
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
java_tests: ["myjavatests"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_test {
|
|
|
|
name: "myjavatests",
|
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
compile_dex: true,
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-02-25 20:26:33 +01:00
|
|
|
result.CheckSnapshot("myexports", "",
|
2019-12-03 19:06:47 +01:00
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_test_import {
|
|
|
|
name: "myexports_myjavatests@current",
|
|
|
|
sdk_member_name: "myjavatests",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-03 19:06:47 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/myjavatests.jar"],
|
|
|
|
test_config: "java/myjavatests-AndroidTest.xml",
|
|
|
|
}
|
|
|
|
|
|
|
|
java_test_import {
|
|
|
|
name: "myjavatests",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2019-12-03 19:06:47 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/myjavatests.jar"],
|
|
|
|
test_config: "java/myjavatests-AndroidTest.xml",
|
|
|
|
}
|
|
|
|
|
|
|
|
module_exports_snapshot {
|
|
|
|
name: "myexports@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2019-12-03 19:06:47 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
java_tests: ["myexports_myjavatests@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavatests/linux_glibc_common/javac/myjavatests.jar -> java/myjavatests.jar
|
|
|
|
.intermediates/myjavatests/linux_glibc_common/myjavatests.config -> java/myjavatests-AndroidTest.xml
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-01-13 22:03:22 +01:00
|
|
|
func TestSnapshotWithJavaSystemModules(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
2020-01-20 19:16:30 +01:00
|
|
|
java_header_libs: ["exported-system-module"],
|
2020-01-13 22:03:22 +01:00
|
|
|
java_system_modules: ["my-system-modules"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_system_modules {
|
|
|
|
name: "my-system-modules",
|
2020-01-20 19:16:30 +01:00
|
|
|
libs: ["system-module", "exported-system-module"],
|
2020-01-13 22:03:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "system-module",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "none",
|
|
|
|
system_modules: "none",
|
|
|
|
}
|
2020-01-20 19:16:30 +01:00
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "exported-system-module",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "none",
|
|
|
|
system_modules: "none",
|
|
|
|
}
|
2020-01-13 22:03:22 +01:00
|
|
|
`)
|
|
|
|
|
2020-02-25 20:26:33 +01:00
|
|
|
result.CheckSnapshot("mysdk", "",
|
2020-01-13 22:03:22 +01:00
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
2020-01-20 19:16:30 +01:00
|
|
|
java_import {
|
|
|
|
name: "mysdk_exported-system-module@current",
|
|
|
|
sdk_member_name: "exported-system-module",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-01-20 19:16:30 +01:00
|
|
|
jars: ["java/exported-system-module.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "exported-system-module",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-01-20 19:16:30 +01:00
|
|
|
jars: ["java/exported-system-module.jar"],
|
|
|
|
}
|
|
|
|
|
2020-01-13 22:03:22 +01:00
|
|
|
java_import {
|
|
|
|
name: "mysdk_system-module@current",
|
|
|
|
sdk_member_name: "system-module",
|
2020-01-20 19:16:30 +01:00
|
|
|
visibility: ["//visibility:private"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-01-13 22:03:22 +01:00
|
|
|
jars: ["java/system-module.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
2020-01-20 19:16:30 +01:00
|
|
|
name: "mysdk_system-module",
|
2020-01-13 22:03:22 +01:00
|
|
|
prefer: false,
|
2020-01-20 19:16:30 +01:00
|
|
|
visibility: ["//visibility:private"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-01-13 22:03:22 +01:00
|
|
|
jars: ["java/system-module.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_system_modules_import {
|
|
|
|
name: "mysdk_my-system-modules@current",
|
|
|
|
sdk_member_name: "my-system-modules",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-01-20 19:16:30 +01:00
|
|
|
libs: [
|
|
|
|
"mysdk_system-module@current",
|
|
|
|
"mysdk_exported-system-module@current",
|
|
|
|
],
|
2020-01-13 22:03:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
java_system_modules_import {
|
|
|
|
name: "my-system-modules",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-01-20 19:16:30 +01:00
|
|
|
libs: [
|
|
|
|
"mysdk_system-module",
|
|
|
|
"exported-system-module",
|
|
|
|
],
|
2020-01-13 22:03:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-01-20 19:16:30 +01:00
|
|
|
java_header_libs: ["mysdk_exported-system-module@current"],
|
2020-01-13 22:03:22 +01:00
|
|
|
java_system_modules: ["mysdk_my-system-modules@current"],
|
|
|
|
}
|
|
|
|
`),
|
2020-01-20 19:16:30 +01:00
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/exported-system-module/android_common/turbine-combined/exported-system-module.jar -> java/exported-system-module.jar
|
|
|
|
.intermediates/system-module/android_common/turbine-combined/system-module.jar -> java/system-module.jar
|
|
|
|
`),
|
2020-01-13 22:03:22 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHostSnapshotWithJavaSystemModules(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
java_system_modules: ["my-system-modules"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_system_modules {
|
|
|
|
name: "my-system-modules",
|
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
libs: ["system-module"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "system-module",
|
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "none",
|
|
|
|
system_modules: "none",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
2020-02-25 20:26:33 +01:00
|
|
|
result.CheckSnapshot("mysdk", "",
|
2020-01-13 22:03:22 +01:00
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "mysdk_system-module@current",
|
|
|
|
sdk_member_name: "system-module",
|
2020-01-20 19:16:30 +01:00
|
|
|
visibility: ["//visibility:private"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-01-13 22:03:22 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/system-module.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
2020-01-20 19:16:30 +01:00
|
|
|
name: "mysdk_system-module",
|
2020-01-13 22:03:22 +01:00
|
|
|
prefer: false,
|
2020-01-20 19:16:30 +01:00
|
|
|
visibility: ["//visibility:private"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-01-13 22:03:22 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/system-module.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_system_modules_import {
|
|
|
|
name: "mysdk_my-system-modules@current",
|
|
|
|
sdk_member_name: "my-system-modules",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-01-13 22:03:22 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
libs: ["mysdk_system-module@current"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_system_modules_import {
|
|
|
|
name: "my-system-modules",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-01-13 22:03:22 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
2020-01-20 19:16:30 +01:00
|
|
|
libs: ["mysdk_system-module"],
|
2020-01-13 22:03:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-01-13 22:03:22 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
java_system_modules: ["mysdk_my-system-modules@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(".intermediates/system-module/linux_glibc_common/javac/system-module.jar -> java/system-module.jar"),
|
|
|
|
)
|
|
|
|
}
|
2020-03-02 19:38:15 +01:00
|
|
|
|
|
|
|
func TestDeviceAndHostSnapshotWithOsSpecificMembers(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
module_exports {
|
|
|
|
name: "myexports",
|
|
|
|
host_supported: true,
|
|
|
|
java_libs: ["myjavalib"],
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
java_header_libs: ["androidjavalib"],
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
java_header_libs: ["hostjavalib"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
host_supported: true,
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library {
|
|
|
|
name: "androidjavalib",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
system_modules: "none",
|
|
|
|
sdk_version: "none",
|
|
|
|
}
|
|
|
|
|
|
|
|
java_library_host {
|
|
|
|
name: "hostjavalib",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("myexports", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myexports_hostjavalib@current",
|
|
|
|
sdk_member_name: "hostjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-03-02 19:38:15 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/hostjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "hostjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-03-02 19:38:15 +01:00
|
|
|
device_supported: false,
|
|
|
|
host_supported: true,
|
|
|
|
jars: ["java/hostjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myexports_androidjavalib@current",
|
|
|
|
sdk_member_name: "androidjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-03-02 19:38:15 +01:00
|
|
|
jars: ["java/androidjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "androidjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-03-02 19:38:15 +01:00
|
|
|
jars: ["java/androidjavalib.jar"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myexports_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-03-02 19:38:15 +01:00
|
|
|
host_supported: true,
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
jars: ["java/android/myjavalib.jar"],
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
jars: ["java/linux_glibc/myjavalib.jar"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-03-02 19:38:15 +01:00
|
|
|
host_supported: true,
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
jars: ["java/android/myjavalib.jar"],
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
jars: ["java/linux_glibc/myjavalib.jar"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
module_exports_snapshot {
|
|
|
|
name: "myexports@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-03-02 19:38:15 +01:00
|
|
|
host_supported: true,
|
2020-03-11 19:17:42 +01:00
|
|
|
java_libs: ["myexports_myjavalib@current"],
|
2020-03-02 19:38:15 +01:00
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
java_header_libs: ["myexports_androidjavalib@current"],
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
java_header_libs: ["myexports_hostjavalib@current"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/hostjavalib/linux_glibc_common/javac/hostjavalib.jar -> java/hostjavalib.jar
|
|
|
|
.intermediates/androidjavalib/android_common/turbine-combined/androidjavalib.jar -> java/androidjavalib.jar
|
|
|
|
.intermediates/myjavalib/android_common/javac/myjavalib.jar -> java/android/myjavalib.jar
|
|
|
|
.intermediates/myjavalib/linux_glibc_common/javac/myjavalib.jar -> java/linux_glibc/myjavalib.jar
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|
2020-02-10 14:37:10 +01:00
|
|
|
|
|
|
|
func TestSnapshotWithJavaSdkLibrary(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_sdk_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
apex_available: ["//apex_available:anyapex"],
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "current",
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: false,
|
2020-04-30 00:35:13 +02:00
|
|
|
stubs_library_visibility: ["//other"],
|
|
|
|
stubs_source_visibility: ["//another"],
|
2020-02-10 14:37:10 +01:00
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-02-10 14:37:10 +01:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: false,
|
2020-02-10 14:37:10 +01:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-04-09 02:08:11 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
2020-02-10 14:37:10 +01:00
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
system: {
|
|
|
|
jars: ["sdk_library/system/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/system/myjavalib_stub_sources"],
|
2020-04-09 02:08:11 +02:00
|
|
|
current_api: "sdk_library/system/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/system/myjavalib-removed.txt",
|
2020-02-10 14:37:10 +01:00
|
|
|
sdk_version: "system_current",
|
|
|
|
},
|
|
|
|
test: {
|
|
|
|
jars: ["sdk_library/test/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/test/myjavalib_stub_sources"],
|
2020-04-09 02:08:11 +02:00
|
|
|
current_api: "sdk_library/test/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/test/myjavalib-removed.txt",
|
2020-02-10 14:37:10 +01:00
|
|
|
sdk_version: "test_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-02-10 14:37:10 +01:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: false,
|
2020-02-10 14:37:10 +01:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-04-09 02:08:11 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
2020-02-10 14:37:10 +01:00
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
system: {
|
|
|
|
jars: ["sdk_library/system/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/system/myjavalib_stub_sources"],
|
2020-04-09 02:08:11 +02:00
|
|
|
current_api: "sdk_library/system/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/system/myjavalib-removed.txt",
|
2020-02-10 14:37:10 +01:00
|
|
|
sdk_version: "system_current",
|
|
|
|
},
|
|
|
|
test: {
|
|
|
|
jars: ["sdk_library/test/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/test/myjavalib_stub_sources"],
|
2020-04-09 02:08:11 +02:00
|
|
|
current_api: "sdk_library/test/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/test/myjavalib-removed.txt",
|
2020-02-10 14:37:10 +01:00
|
|
|
sdk_version: "test_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-02-10 14:37:10 +01:00
|
|
|
java_sdk_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib.stubs/android_common/javac/myjavalib.stubs.jar -> sdk_library/public/myjavalib-stubs.jar
|
2020-04-09 02:08:11 +02:00
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_api.txt -> sdk_library/public/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_removed.txt -> sdk_library/public/myjavalib-removed.txt
|
2020-02-10 14:37:10 +01:00
|
|
|
.intermediates/myjavalib.stubs.system/android_common/javac/myjavalib.stubs.system.jar -> sdk_library/system/myjavalib-stubs.jar
|
2020-04-09 02:08:11 +02:00
|
|
|
.intermediates/myjavalib.stubs.source.system/android_common/myjavalib.stubs.source.system_api.txt -> sdk_library/system/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source.system/android_common/myjavalib.stubs.source.system_removed.txt -> sdk_library/system/myjavalib-removed.txt
|
2020-02-10 14:37:10 +01:00
|
|
|
.intermediates/myjavalib.stubs.test/android_common/javac/myjavalib.stubs.test.jar -> sdk_library/test/myjavalib-stubs.jar
|
2020-04-09 02:08:11 +02:00
|
|
|
.intermediates/myjavalib.stubs.source.test/android_common/myjavalib.stubs.source.test_api.txt -> sdk_library/test/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source.test/android_common/myjavalib.stubs.source.test_removed.txt -> sdk_library/test/myjavalib-removed.txt
|
2020-02-10 14:37:10 +01:00
|
|
|
`),
|
2020-04-09 01:10:17 +02:00
|
|
|
checkMergeZips(
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/public/myjavalib_stub_sources.zip",
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/system/myjavalib_stub_sources.zip",
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/test/myjavalib_stub_sources.zip"),
|
2020-02-10 14:37:10 +01:00
|
|
|
)
|
|
|
|
}
|
2020-04-28 11:44:03 +02:00
|
|
|
|
2020-05-12 16:52:55 +02:00
|
|
|
func TestSnapshotWithJavaSdkLibrary_SdkVersion_None(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_sdk_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "none",
|
|
|
|
system_modules: "none",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-05-12 16:52:55 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-05-12 16:52:55 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "none",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-05-12 16:52:55 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-05-12 16:52:55 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "none",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-05-12 16:52:55 +02:00
|
|
|
java_sdk_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib.stubs/android_common/javac/myjavalib.stubs.jar -> sdk_library/public/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_api.txt -> sdk_library/public/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_removed.txt -> sdk_library/public/myjavalib-removed.txt
|
2020-05-12 16:52:55 +02:00
|
|
|
`),
|
|
|
|
checkMergeZips(
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/public/myjavalib_stub_sources.zip",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-05-12 12:50:28 +02:00
|
|
|
func TestSnapshotWithJavaSdkLibrary_SdkVersion_ForScope(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_sdk_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "module_current",
|
|
|
|
public: {
|
|
|
|
enabled: true,
|
|
|
|
sdk_version: "module_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-05-12 12:50:28 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-05-12 12:50:28 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "module_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-05-12 12:50:28 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-05-12 12:50:28 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "module_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-05-12 12:50:28 +02:00
|
|
|
java_sdk_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib.stubs/android_common/javac/myjavalib.stubs.jar -> sdk_library/public/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_api.txt -> sdk_library/public/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_removed.txt -> sdk_library/public/myjavalib-removed.txt
|
2020-05-12 12:50:28 +02:00
|
|
|
`),
|
|
|
|
checkMergeZips(
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/public/myjavalib_stub_sources.zip",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSnapshotWithJavaSdkLibrary_ApiScopes(t *testing.T) {
|
2020-04-28 11:44:03 +02:00
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_sdk_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
apex_available: ["//apex_available:anyapex"],
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "current",
|
|
|
|
public: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
system: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-04-28 11:44:03 +02:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-04-28 11:44:03 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-04-28 11:44:03 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
system: {
|
|
|
|
jars: ["sdk_library/system/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/system/myjavalib_stub_sources"],
|
2020-04-28 11:44:03 +02:00
|
|
|
current_api: "sdk_library/system/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/system/myjavalib-removed.txt",
|
|
|
|
sdk_version: "system_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-04-28 11:44:03 +02:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-04-28 11:44:03 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-04-28 11:44:03 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
system: {
|
|
|
|
jars: ["sdk_library/system/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/system/myjavalib_stub_sources"],
|
2020-04-28 11:44:03 +02:00
|
|
|
current_api: "sdk_library/system/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/system/myjavalib-removed.txt",
|
|
|
|
sdk_version: "system_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-04-28 11:44:03 +02:00
|
|
|
java_sdk_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib.stubs/android_common/javac/myjavalib.stubs.jar -> sdk_library/public/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_api.txt -> sdk_library/public/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_removed.txt -> sdk_library/public/myjavalib-removed.txt
|
2020-04-28 11:44:03 +02:00
|
|
|
.intermediates/myjavalib.stubs.system/android_common/javac/myjavalib.stubs.system.jar -> sdk_library/system/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source.system/android_common/myjavalib.stubs.source.system_api.txt -> sdk_library/system/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source.system/android_common/myjavalib.stubs.source.system_removed.txt -> sdk_library/system/myjavalib-removed.txt
|
2020-04-28 11:44:03 +02:00
|
|
|
`),
|
|
|
|
checkMergeZips(
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/public/myjavalib_stub_sources.zip",
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/system/myjavalib_stub_sources.zip",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
2020-04-28 15:13:56 +02:00
|
|
|
|
|
|
|
func TestSnapshotWithJavaSdkLibrary_ModuleLib(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_sdk_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
apex_available: ["//apex_available:anyapex"],
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "current",
|
|
|
|
public: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
system: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
module_lib: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-04-28 15:13:56 +02:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-04-28 15:13:56 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-04-28 15:13:56 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
system: {
|
|
|
|
jars: ["sdk_library/system/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/system/myjavalib_stub_sources"],
|
2020-04-28 15:13:56 +02:00
|
|
|
current_api: "sdk_library/system/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/system/myjavalib-removed.txt",
|
|
|
|
sdk_version: "system_current",
|
|
|
|
},
|
|
|
|
module_lib: {
|
2020-05-13 20:19:49 +02:00
|
|
|
jars: ["sdk_library/module-lib/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/module-lib/myjavalib_stub_sources"],
|
2020-05-13 20:19:49 +02:00
|
|
|
current_api: "sdk_library/module-lib/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/module-lib/myjavalib-removed.txt",
|
2020-04-28 15:13:56 +02:00
|
|
|
sdk_version: "module_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-04-28 15:13:56 +02:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-04-28 15:13:56 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-04-28 15:13:56 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
system: {
|
|
|
|
jars: ["sdk_library/system/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/system/myjavalib_stub_sources"],
|
2020-04-28 15:13:56 +02:00
|
|
|
current_api: "sdk_library/system/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/system/myjavalib-removed.txt",
|
|
|
|
sdk_version: "system_current",
|
|
|
|
},
|
|
|
|
module_lib: {
|
2020-05-13 20:19:49 +02:00
|
|
|
jars: ["sdk_library/module-lib/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/module-lib/myjavalib_stub_sources"],
|
2020-05-13 20:19:49 +02:00
|
|
|
current_api: "sdk_library/module-lib/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/module-lib/myjavalib-removed.txt",
|
2020-04-28 15:13:56 +02:00
|
|
|
sdk_version: "module_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-04-28 15:13:56 +02:00
|
|
|
java_sdk_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib.stubs/android_common/javac/myjavalib.stubs.jar -> sdk_library/public/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_api.txt -> sdk_library/public/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_removed.txt -> sdk_library/public/myjavalib-removed.txt
|
2020-04-28 15:13:56 +02:00
|
|
|
.intermediates/myjavalib.stubs.system/android_common/javac/myjavalib.stubs.system.jar -> sdk_library/system/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source.system/android_common/myjavalib.stubs.source.system_api.txt -> sdk_library/system/myjavalib.txt
|
2020-06-02 14:00:02 +02:00
|
|
|
.intermediates/myjavalib.stubs.source.system/android_common/myjavalib.stubs.source.system_removed.txt -> sdk_library/system/myjavalib-removed.txt
|
2020-05-13 20:19:49 +02:00
|
|
|
.intermediates/myjavalib.stubs.module_lib/android_common/javac/myjavalib.stubs.module_lib.jar -> sdk_library/module-lib/myjavalib-stubs.jar
|
2020-07-20 19:04:44 +02:00
|
|
|
.intermediates/myjavalib.stubs.source.module_lib/android_common/myjavalib.stubs.source.module_lib_api.txt -> sdk_library/module-lib/myjavalib.txt
|
|
|
|
.intermediates/myjavalib.stubs.source.module_lib/android_common/myjavalib.stubs.source.module_lib_removed.txt -> sdk_library/module-lib/myjavalib-removed.txt
|
2020-04-28 15:13:56 +02:00
|
|
|
`),
|
|
|
|
checkMergeZips(
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/public/myjavalib_stub_sources.zip",
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/system/myjavalib_stub_sources.zip",
|
2020-05-13 20:19:49 +02:00
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/module-lib/myjavalib_stub_sources.zip",
|
2020-04-28 15:13:56 +02:00
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
2020-05-13 17:54:55 +02:00
|
|
|
|
2020-06-02 14:00:08 +02:00
|
|
|
func TestSnapshotWithJavaSdkLibrary_SystemServer(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_sdk_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
apex_available: ["//apex_available:anyapex"],
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "current",
|
|
|
|
public: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
system_server: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-06-02 14:00:08 +02:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
|
|
|
shared_library: true,
|
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-06-02 14:00:08 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
system_server: {
|
|
|
|
jars: ["sdk_library/system-server/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/system-server/myjavalib_stub_sources"],
|
2020-06-02 14:00:08 +02:00
|
|
|
current_api: "sdk_library/system-server/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/system-server/myjavalib-removed.txt",
|
|
|
|
sdk_version: "system_server_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-06-02 14:00:08 +02:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
|
|
|
shared_library: true,
|
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-06-02 14:00:08 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
system_server: {
|
|
|
|
jars: ["sdk_library/system-server/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/system-server/myjavalib_stub_sources"],
|
2020-06-02 14:00:08 +02:00
|
|
|
current_api: "sdk_library/system-server/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/system-server/myjavalib-removed.txt",
|
|
|
|
sdk_version: "system_server_current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-06-02 14:00:08 +02:00
|
|
|
java_sdk_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib.stubs/android_common/javac/myjavalib.stubs.jar -> sdk_library/public/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_api.txt -> sdk_library/public/myjavalib.txt
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_removed.txt -> sdk_library/public/myjavalib-removed.txt
|
|
|
|
.intermediates/myjavalib.stubs.system_server/android_common/javac/myjavalib.stubs.system_server.jar -> sdk_library/system-server/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source.system_server/android_common/myjavalib.stubs.source.system_server_api.txt -> sdk_library/system-server/myjavalib.txt
|
|
|
|
.intermediates/myjavalib.stubs.source.system_server/android_common/myjavalib.stubs.source.system_server_removed.txt -> sdk_library/system-server/myjavalib-removed.txt
|
|
|
|
`),
|
|
|
|
checkMergeZips(
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/public/myjavalib_stub_sources.zip",
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/system-server/myjavalib_stub_sources.zip",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-05-13 17:54:55 +02:00
|
|
|
func TestSnapshotWithJavaSdkLibrary_NamingScheme(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_sdk_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
apex_available: ["//apex_available:anyapex"],
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "current",
|
2020-09-11 14:04:05 +02:00
|
|
|
naming_scheme: "default",
|
2020-05-13 17:54:55 +02:00
|
|
|
public: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-05-13 17:54:55 +02:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
2020-09-11 14:04:05 +02:00
|
|
|
naming_scheme: "default",
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-05-13 17:54:55 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-05-13 17:54:55 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-05-13 17:54:55 +02:00
|
|
|
apex_available: ["//apex_available:anyapex"],
|
2020-09-11 14:04:05 +02:00
|
|
|
naming_scheme: "default",
|
2020-05-26 21:57:10 +02:00
|
|
|
shared_library: true,
|
2020-05-13 17:54:55 +02:00
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-05-13 17:54:55 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-05-13 17:54:55 +02:00
|
|
|
java_sdk_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
2020-09-11 14:04:05 +02:00
|
|
|
.intermediates/myjavalib.stubs/android_common/javac/myjavalib.stubs.jar -> sdk_library/public/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_api.txt -> sdk_library/public/myjavalib.txt
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_removed.txt -> sdk_library/public/myjavalib-removed.txt
|
2020-05-13 17:54:55 +02:00
|
|
|
`),
|
|
|
|
checkMergeZips(
|
|
|
|
".intermediates/mysdk/common_os/tmp/sdk_library/public/myjavalib_stub_sources.zip",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
2020-09-11 12:55:00 +02:00
|
|
|
|
|
|
|
func TestSnapshotWithJavaSdkLibrary_DoctagFiles(t *testing.T) {
|
|
|
|
result := testSdkWithJava(t, `
|
|
|
|
sdk {
|
|
|
|
name: "mysdk",
|
|
|
|
java_sdk_libs: ["myjavalib"],
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library {
|
|
|
|
name: "myjavalib",
|
|
|
|
srcs: ["Test.java"],
|
|
|
|
sdk_version: "current",
|
|
|
|
public: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
doctag_files: ["docs/known_doctags"],
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "mygroup",
|
|
|
|
srcs: [":myjavalib{.doctags}"],
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
result.CheckSnapshot("mysdk", "",
|
|
|
|
checkAndroidBpContents(`
|
|
|
|
// This is auto-generated. DO NOT EDIT.
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "mysdk_myjavalib@current",
|
|
|
|
sdk_member_name: "myjavalib",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-09-11 12:55:00 +02:00
|
|
|
shared_library: true,
|
|
|
|
doctag_files: ["doctags/docs/known_doctags"],
|
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-09-11 12:55:00 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
java_sdk_library_import {
|
|
|
|
name: "myjavalib",
|
|
|
|
prefer: false,
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-11-03 01:11:09 +01:00
|
|
|
apex_available: ["//apex_available:platform"],
|
2020-09-11 12:55:00 +02:00
|
|
|
shared_library: true,
|
|
|
|
doctag_files: ["doctags/docs/known_doctags"],
|
|
|
|
public: {
|
|
|
|
jars: ["sdk_library/public/myjavalib-stubs.jar"],
|
2020-11-18 17:37:35 +01:00
|
|
|
stub_srcs: ["sdk_library/public/myjavalib_stub_sources"],
|
2020-09-11 12:55:00 +02:00
|
|
|
current_api: "sdk_library/public/myjavalib.txt",
|
|
|
|
removed_api: "sdk_library/public/myjavalib-removed.txt",
|
|
|
|
sdk_version: "current",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk_snapshot {
|
|
|
|
name: "mysdk@current",
|
2020-09-29 17:00:55 +02:00
|
|
|
visibility: ["//visibility:public"],
|
2020-09-11 12:55:00 +02:00
|
|
|
java_sdk_libs: ["mysdk_myjavalib@current"],
|
|
|
|
}
|
|
|
|
`),
|
|
|
|
checkAllCopyRules(`
|
|
|
|
.intermediates/myjavalib.stubs/android_common/javac/myjavalib.stubs.jar -> sdk_library/public/myjavalib-stubs.jar
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_api.txt -> sdk_library/public/myjavalib.txt
|
|
|
|
.intermediates/myjavalib.stubs.source/android_common/myjavalib.stubs.source_removed.txt -> sdk_library/public/myjavalib-removed.txt
|
|
|
|
docs/known_doctags -> doctags/docs/known_doctags
|
|
|
|
`),
|
|
|
|
)
|
|
|
|
}
|