diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2018-04-26 20:38:08 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-04-26 20:38:08 +0000 |
commit | 4afbedf988425e25b74e3d246cbefaff9e10c1bb (patch) | |
tree | dd674bf673b8fee38265d4b4382a7e379db549ca /libs/protoutil/Android.bp | |
parent | 317f7de44ce4441e64cbc3bfc65d34b90a5dab0d (diff) | |
parent | c3d4b28a760da3ff48d8dc0b8d0b4a4f20c61ffe (diff) |
Merge "Add unit tests to libprotoutil."
Diffstat (limited to 'libs/protoutil/Android.bp')
-rw-r--r-- | libs/protoutil/Android.bp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libs/protoutil/Android.bp b/libs/protoutil/Android.bp index a36bf802cf79..14b2e4131acb 100644 --- a/libs/protoutil/Android.bp +++ b/libs/protoutil/Android.bp @@ -42,16 +42,20 @@ cc_library { cc_test { name: "libprotoutil_test", - srcs: [ - "tests/EncodedBuffer_test.cpp", - ], + srcs: ["tests/*"], shared_libs: [ + "libbase", "libcutils", "libprotoutil", + "libprotobuf-cpp-full", ], static_libs: [ "libgmock", ], + + proto: { + type: "full", + } } |