Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f80c6c37 authored by Jordan Demeulenaere's avatar Jordan Demeulenaere Committed by Android (Google) Code Review
Browse files

Merge "Make STL tests depend on STL lib directly" into main

parents eda335cc 35c1313f
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -22,19 +22,12 @@ package {
    default_applicable_licenses: ["frameworks_base_packages_SystemUI_license"],
}

filegroup {
    name: "PlatformComposeSceneTransitionLayout-srcs",
    srcs: [
        "src/**/*.kt",
    ],
}

android_library {
    name: "PlatformComposeSceneTransitionLayout",
    manifest: "AndroidManifest.xml",

    srcs: [
        ":PlatformComposeSceneTransitionLayout-srcs",
        "src/**/*.kt",
    ],

    static_libs: [
+4 −4
Original line number Diff line number Diff line
@@ -30,14 +30,11 @@ android_test {

    srcs: [
        "src/**/*.kt",

        // TODO(b/240432457): Depend on PlatformComposeSceneTransitionLayout
        // directly once Kotlin tests can access internal declarations.
        ":PlatformComposeSceneTransitionLayout-srcs",
    ],

    static_libs: [
        "platform-test-annotations",
        "PlatformComposeSceneTransitionLayout",
        "PlatformComposeSceneTransitionLayoutTestsUtils",
        "PlatformMotionTestingCompose",
        "androidx.test.runner",
@@ -50,6 +47,9 @@ android_test {

        "truth",
    ],
    associates: [
        "PlatformComposeSceneTransitionLayout",
    ],
    asset_dirs: ["goldens"],
    kotlincflags: ["-Xjvm-default=all"],
    use_resource_processor: true,