Eugene Susla 574b7e11d5 Codegen for parcelable/dataclass boilerplate
This is the initial implementation of the `codegen` cli utility
for in-place java boilerplate generation

See DataClass and SampleDataClass for documentation/guide/examples.

See tools/codegen/ for implementation and tests/Codegen/ for tests.

Bug: 64221737
Test: . frameworks/base/tests/Codegen/runTest.sh
Change-Id: I75177cb770f1beabc87dbae9e77ce4b93ca08e7f
2019-07-17 17:12:37 -07:00

26 lines
445 B
Plaintext

android_test {
name: "CodegenTests",
srcs: [
"**/*.java",
],
platform_apis: true,
test_suites: ["device-tests"],
certificate: "platform",
optimize: {
enabled: false,
},
plugins: [
"staledataclass-annotation-processor",
],
static_libs: [
"junit",
"hamcrest",
"hamcrest-library",
"androidx.test.runner",
"androidx.test.rules",
],
}