Skip to content

Commit 212614c

Browse files
Removed kotlinc deps, added :android dep and tlv decoder source
1 parent 392eb5e commit 212614c

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

src/controller/java/BUILD.gn

+8-11
Original file line numberDiff line numberDiff line change
@@ -435,14 +435,17 @@ android_library("java_clusters") {
435435
"src/chip/clusterinfo/CommandResponseInfo.java",
436436
"src/chip/clusterinfo/DelegatedClusterCallback.java",
437437
"src/chip/clusterinfo/InteractionInfo.java",
438+
"src/chip/devicecontroller/ChipClusterException.java",
438439
"src/chip/devicecontroller/ChipTLVType.java",
439440
]
440441

442+
if (matter_enable_tlv_decoder_api) {
443+
sources += [ "src/chip/devicecontroller/ChipTLVValueDecoder.java" ]
444+
}
445+
441446
deps = [
442-
":chipcluster",
443-
":chipclusterID",
444-
":jsontlv",
445-
":tlv",
447+
":android",
448+
":java_model",
446449
"${chip_root}/third_party/java_deps:annotation",
447450
]
448451
}
@@ -463,10 +466,7 @@ android_library("java_model") {
463466
]
464467

465468
deps = [
466-
":chipcluster",
467-
":chipclusterID",
468-
":jsontlv",
469-
":tlv",
469+
":android",
470470
"${chip_root}/third_party/java_deps:annotation",
471471
]
472472
}
@@ -475,8 +475,6 @@ android_library("java") {
475475
output_name = "CHIPController.jar"
476476

477477
deps = [
478-
":chipcluster",
479-
":chipclusterID",
480478
":java_model",
481479
":jsontlv",
482480
":tlv",
@@ -489,7 +487,6 @@ android_library("java") {
489487
"src/chip/devicecontroller/AttestationInfo.java",
490488
"src/chip/devicecontroller/AttestationTrustStoreDelegate.java",
491489
"src/chip/devicecontroller/CSRInfo.java",
492-
"src/chip/devicecontroller/ChipClusterException.java",
493490
"src/chip/devicecontroller/ChipCommandType.java",
494491
"src/chip/devicecontroller/ChipDeviceController.java",
495492
"src/chip/devicecontroller/ChipDeviceControllerException.java",

0 commit comments

Comments
 (0)