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

Commit 8c0f1317 authored by Jim Long's avatar Jim Long
Browse files

Expose timestats.proto to the java host library

Bug: 142712295
Test: Add host-timestats-proto to an Android.mk file
Test: which is used to build the java file referencing
Test: the timestats.proto
Test: Eg. vendor/google_testing/tvts/urils/Android.mk
Test: replace utils-proto with host-timestats-proto
Test: Remove the duplicate proto file used in utils-proto
Test: Confirm the java file works as it did before.
Change-Id: If04539d959c2a517d6e2ec4338e0290651c03b89
parent e1a6f2f8
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -30,3 +30,15 @@ cc_library_shared {
        "-Wno-unused-parameter",
    ],
}

// ====  java host library for timestats proto  ===========================
// Note timestats is deprecated and is only used for legacy tests
java_library_host {
    name: "host-timestats-proto",
    srcs: [
        "timestats.proto",
    ],
    proto: {
        type: "full",
    },
}