2019-08-28 03:03:00 +08: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 rust
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
2019-09-25 04:23:50 +08:00
|
|
|
"android/soong/cc"
|
2019-08-28 03:03:00 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func GatherRequiredDepsForTest() string {
|
|
|
|
bp := `
|
|
|
|
rust_prebuilt_dylib {
|
|
|
|
name: "libstd_x86_64-unknown-linux-gnu",
|
|
|
|
srcs: [""],
|
|
|
|
host_supported: true,
|
|
|
|
}
|
|
|
|
rust_prebuilt_dylib {
|
|
|
|
name: "libtest_x86_64-unknown-linux-gnu",
|
|
|
|
srcs: [""],
|
|
|
|
host_supported: true,
|
|
|
|
}
|
2019-09-25 04:23:50 +08:00
|
|
|
|
|
|
|
//////////////////////////////
|
|
|
|
// Device module requirements
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "liblog",
|
|
|
|
no_libcrt: true,
|
|
|
|
nocrt: true,
|
|
|
|
system_shared_libs: [],
|
|
|
|
}
|
2020-04-09 21:32:15 +08:00
|
|
|
rust_library_dylib {
|
|
|
|
name: "libstd",
|
|
|
|
crate_name: "std",
|
|
|
|
srcs: ["foo.rs"],
|
|
|
|
no_stdlibs: true,
|
2020-04-28 22:10:23 +08:00
|
|
|
host_supported: true,
|
2020-04-09 21:32:15 +08:00
|
|
|
}
|
|
|
|
rust_library_rlib {
|
|
|
|
name: "libstd.static",
|
|
|
|
crate_name: "std",
|
|
|
|
srcs: ["foo.rs"],
|
|
|
|
no_stdlibs: true,
|
2020-04-28 22:10:23 +08:00
|
|
|
host_supported: true,
|
2020-04-09 21:32:15 +08:00
|
|
|
}
|
|
|
|
rust_library_dylib {
|
|
|
|
name: "libtest",
|
|
|
|
crate_name: "test",
|
|
|
|
srcs: ["foo.rs"],
|
|
|
|
no_stdlibs: true,
|
2020-04-28 22:10:23 +08:00
|
|
|
host_supported: true,
|
|
|
|
|
2020-04-09 21:32:15 +08:00
|
|
|
}
|
|
|
|
rust_library_rlib {
|
|
|
|
name: "libtest.static",
|
|
|
|
crate_name: "test",
|
|
|
|
srcs: ["foo.rs"],
|
|
|
|
no_stdlibs: true,
|
2020-04-28 22:10:23 +08:00
|
|
|
host_supported: true,
|
2020-04-09 21:32:15 +08:00
|
|
|
}
|
|
|
|
|
2019-12-20 00:01:36 +08:00
|
|
|
` + cc.GatherRequiredDepsForTest(android.NoOsType)
|
2019-08-28 03:03:00 +08:00
|
|
|
return bp
|
|
|
|
}
|
|
|
|
|
2019-12-14 12:41:13 +08:00
|
|
|
func CreateTestContext() *android.TestContext {
|
2019-08-28 03:03:00 +08:00
|
|
|
ctx := android.NewTestArchContext()
|
2019-12-20 00:01:36 +08:00
|
|
|
cc.RegisterRequiredBuildComponentsForTest(ctx)
|
2019-11-23 07:25:03 +08:00
|
|
|
ctx.RegisterModuleType("rust_binary", RustBinaryFactory)
|
|
|
|
ctx.RegisterModuleType("rust_binary_host", RustBinaryHostFactory)
|
|
|
|
ctx.RegisterModuleType("rust_test", RustTestFactory)
|
|
|
|
ctx.RegisterModuleType("rust_test_host", RustTestHostFactory)
|
|
|
|
ctx.RegisterModuleType("rust_library", RustLibraryFactory)
|
2020-06-24 05:28:53 +08:00
|
|
|
ctx.RegisterModuleType("rust_library_dylib", RustLibraryDylibFactory)
|
|
|
|
ctx.RegisterModuleType("rust_library_rlib", RustLibraryRlibFactory)
|
2019-11-23 07:25:03 +08:00
|
|
|
ctx.RegisterModuleType("rust_library_host", RustLibraryHostFactory)
|
|
|
|
ctx.RegisterModuleType("rust_library_host_dylib", RustLibraryDylibHostFactory)
|
2020-06-24 05:28:53 +08:00
|
|
|
ctx.RegisterModuleType("rust_library_host_rlib", RustLibraryRlibHostFactory)
|
|
|
|
ctx.RegisterModuleType("rust_ffi", RustFFIFactory)
|
|
|
|
ctx.RegisterModuleType("rust_ffi_shared", RustFFISharedFactory)
|
|
|
|
ctx.RegisterModuleType("rust_ffi_static", RustFFIStaticFactory)
|
|
|
|
ctx.RegisterModuleType("rust_ffi_host", RustFFIHostFactory)
|
|
|
|
ctx.RegisterModuleType("rust_ffi_host_shared", RustFFISharedHostFactory)
|
|
|
|
ctx.RegisterModuleType("rust_ffi_host_static", RustFFIStaticHostFactory)
|
2019-11-23 07:25:03 +08:00
|
|
|
ctx.RegisterModuleType("rust_proc_macro", ProcMacroFactory)
|
|
|
|
ctx.RegisterModuleType("rust_prebuilt_dylib", PrebuiltDylibFactory)
|
2019-08-28 03:03:00 +08:00
|
|
|
ctx.PreDepsMutators(func(ctx android.RegisterMutatorsContext) {
|
2019-10-19 05:49:46 +08:00
|
|
|
// rust mutators
|
|
|
|
ctx.BottomUp("rust_libraries", LibraryMutator).Parallel()
|
2020-04-09 21:56:02 +08:00
|
|
|
ctx.BottomUp("rust_begin", BeginMutator).Parallel()
|
2019-10-19 05:49:46 +08:00
|
|
|
})
|
2020-06-05 17:09:27 +08:00
|
|
|
ctx.RegisterSingletonType("rust_project_generator", rustProjectGeneratorSingleton)
|
2019-08-28 03:03:00 +08:00
|
|
|
|
|
|
|
return ctx
|
|
|
|
}
|