diff options
author | 2019-12-18 02:34:36 +0000 | |
---|---|---|
committer | 2019-12-18 02:34:36 +0000 | |
commit | 572aeed6a4211d7433cd59fe9c83f34b2fee4f99 (patch) | |
tree | b1a8d26f7e72fe5290b8792926da064926133924 /sysprop/sysprop_test.go | |
parent | fa2ac9f6e9378f883a307df1ec9d965839f60671 (diff) | |
parent | fb0c16e95a559e582911834d4fd7621c012fa831 (diff) |
Merge "Move imageMutator before archMutator"
Diffstat (limited to 'sysprop/sysprop_test.go')
-rw-r--r-- | sysprop/sysprop_test.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sysprop/sysprop_test.go b/sysprop/sysprop_test.go index 7b906731f..5446bdc06 100644 --- a/sysprop/sysprop_test.go +++ b/sysprop/sysprop_test.go @@ -284,10 +284,10 @@ func TestSyspropLibrary(t *testing.T) { // Check for generated cc_library for _, variant := range []string{ - "android_arm_armv7-a-neon_vendor.VER_shared", - "android_arm_armv7-a-neon_vendor.VER_static", - "android_arm64_armv8-a_vendor.VER_shared", - "android_arm64_armv8-a_vendor.VER_static", + "android_vendor.VER_arm_armv7-a-neon_shared", + "android_vendor.VER_arm_armv7-a-neon_static", + "android_vendor.VER_arm64_armv8-a_shared", + "android_vendor.VER_arm64_armv8-a_static", } { ctx.ModuleForTests("libsysprop-platform", variant) ctx.ModuleForTests("libsysprop-vendor", variant) @@ -311,15 +311,15 @@ func TestSyspropLibrary(t *testing.T) { // Check for exported includes coreVariant := "android_arm64_armv8-a_static" - vendorVariant := "android_arm64_armv8-a_vendor.VER_static" + vendorVariant := "android_vendor.VER_arm64_armv8-a_static" platformInternalPath := "libsysprop-platform/android_arm64_armv8-a_static/gen/sysprop/include" platformPublicCorePath := "libsysprop-platform/android_arm64_armv8-a_static/gen/sysprop/public/include" - platformPublicVendorPath := "libsysprop-platform/android_arm64_armv8-a_vendor.VER_static/gen/sysprop/public/include" + platformPublicVendorPath := "libsysprop-platform/android_vendor.VER_arm64_armv8-a_static/gen/sysprop/public/include" platformOnProductPath := "libsysprop-platform-on-product/android_arm64_armv8-a_static/gen/sysprop/public/include" - vendorInternalPath := "libsysprop-vendor/android_arm64_armv8-a_vendor.VER_static/gen/sysprop/include" + vendorInternalPath := "libsysprop-vendor/android_vendor.VER_arm64_armv8-a_static/gen/sysprop/include" vendorPublicPath := "libsysprop-vendor/android_arm64_armv8-a_static/gen/sysprop/public/include" platformClient := ctx.ModuleForTests("cc-client-platform", coreVariant) |