2019-08-27 21:03:00 +02: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-24 22:23:50 +02:00
|
|
|
"android/soong/cc"
|
2020-05-16 02:36:30 +02:00
|
|
|
"android/soong/genrule"
|
2019-08-27 21:03:00 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func GatherRequiredDepsForTest() string {
|
|
|
|
bp := `
|
2020-06-25 09:47:46 +02:00
|
|
|
rust_prebuilt_library {
|
2019-08-27 21:03:00 +02:00
|
|
|
name: "libstd_x86_64-unknown-linux-gnu",
|
2020-06-25 09:47:46 +02:00
|
|
|
crate_name: "std",
|
|
|
|
rlib: {
|
|
|
|
srcs: ["libstd.rlib"],
|
|
|
|
},
|
|
|
|
dylib: {
|
|
|
|
srcs: ["libstd.so"],
|
|
|
|
},
|
2019-08-27 21:03:00 +02:00
|
|
|
host_supported: true,
|
|
|
|
}
|
2020-06-25 09:47:46 +02:00
|
|
|
rust_prebuilt_library {
|
2019-08-27 21:03:00 +02:00
|
|
|
name: "libtest_x86_64-unknown-linux-gnu",
|
2020-06-25 09:47:46 +02:00
|
|
|
crate_name: "test",
|
|
|
|
rlib: {
|
|
|
|
srcs: ["libtest.rlib"],
|
|
|
|
},
|
|
|
|
dylib: {
|
|
|
|
srcs: ["libtest.so"],
|
|
|
|
},
|
2019-08-27 21:03:00 +02:00
|
|
|
host_supported: true,
|
|
|
|
}
|
2019-09-24 22:23:50 +02:00
|
|
|
|
|
|
|
//////////////////////////////
|
|
|
|
// Device module requirements
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "liblog",
|
|
|
|
no_libcrt: true,
|
|
|
|
nocrt: true,
|
|
|
|
system_shared_libs: [],
|
|
|
|
}
|
2020-06-25 09:47:46 +02:00
|
|
|
rust_library {
|
2020-04-09 15:32:15 +02:00
|
|
|
name: "libstd",
|
|
|
|
crate_name: "std",
|
|
|
|
srcs: ["foo.rs"],
|
|
|
|
no_stdlibs: true,
|
2020-04-28 16:10:23 +02:00
|
|
|
host_supported: true,
|
2020-06-25 09:47:46 +02:00
|
|
|
native_coverage: false,
|
2020-04-09 15:32:15 +02:00
|
|
|
}
|
2020-06-25 09:47:46 +02:00
|
|
|
rust_library {
|
2020-04-09 15:32:15 +02:00
|
|
|
name: "libtest",
|
|
|
|
crate_name: "test",
|
|
|
|
srcs: ["foo.rs"],
|
|
|
|
no_stdlibs: true,
|
2020-04-28 16:10:23 +02:00
|
|
|
host_supported: true,
|
2020-06-25 09:47:46 +02:00
|
|
|
native_coverage: false,
|
2020-04-09 15:32:15 +02:00
|
|
|
}
|
|
|
|
|
2019-12-19 17:01:36 +01:00
|
|
|
` + cc.GatherRequiredDepsForTest(android.NoOsType)
|
2019-08-27 21:03:00 +02:00
|
|
|
return bp
|
|
|
|
}
|
|
|
|
|
2019-12-14 05:41:13 +01:00
|
|
|
func CreateTestContext() *android.TestContext {
|
2019-08-27 21:03:00 +02:00
|
|
|
ctx := android.NewTestArchContext()
|
2019-12-19 17:01:36 +01:00
|
|
|
cc.RegisterRequiredBuildComponentsForTest(ctx)
|
2020-05-16 02:36:30 +02:00
|
|
|
ctx.RegisterModuleType("genrule", genrule.GenRuleFactory)
|
2019-11-23 00:25:03 +01: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-23 23:28:53 +02:00
|
|
|
ctx.RegisterModuleType("rust_library_dylib", RustLibraryDylibFactory)
|
|
|
|
ctx.RegisterModuleType("rust_library_rlib", RustLibraryRlibFactory)
|
2019-11-23 00:25:03 +01:00
|
|
|
ctx.RegisterModuleType("rust_library_host", RustLibraryHostFactory)
|
|
|
|
ctx.RegisterModuleType("rust_library_host_dylib", RustLibraryDylibHostFactory)
|
2020-06-23 23:28:53 +02: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 00:25:03 +01:00
|
|
|
ctx.RegisterModuleType("rust_proc_macro", ProcMacroFactory)
|
2020-06-25 09:47:46 +02:00
|
|
|
ctx.RegisterModuleType("rust_prebuilt_library", PrebuiltLibraryFactory)
|
2019-11-23 00:25:03 +01:00
|
|
|
ctx.RegisterModuleType("rust_prebuilt_dylib", PrebuiltDylibFactory)
|
2020-06-25 09:47:46 +02:00
|
|
|
ctx.RegisterModuleType("rust_prebuilt_rlib", PrebuiltRlibFactory)
|
2019-08-27 21:03:00 +02:00
|
|
|
ctx.PreDepsMutators(func(ctx android.RegisterMutatorsContext) {
|
2019-10-18 23:49:46 +02:00
|
|
|
// rust mutators
|
|
|
|
ctx.BottomUp("rust_libraries", LibraryMutator).Parallel()
|
2020-04-09 15:56:02 +02:00
|
|
|
ctx.BottomUp("rust_begin", BeginMutator).Parallel()
|
2019-10-18 23:49:46 +02:00
|
|
|
})
|
2020-06-05 11:09:27 +02:00
|
|
|
ctx.RegisterSingletonType("rust_project_generator", rustProjectGeneratorSingleton)
|
2019-08-27 21:03:00 +02:00
|
|
|
|
|
|
|
return ctx
|
|
|
|
}
|