Skip to content

Commit

Permalink
rename source-set from data to configuration-data
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Nov 28, 2023
1 parent cf844ea commit 1a8efa7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/chip_data_model.gni
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ template("chip_data_model") {
"${_app_root}/clusters/${cluster}/${cluster}.h",
]
deps += [
"${chip_root}/src/app/icd:data",
"${chip_root}/src/app/icd:configuration-data",
"${chip_root}/src/app/icd:icd_config",
"${chip_root}/src/app/icd:monitoring-table",
"${chip_root}/src/app/icd:notifier",
Expand Down
4 changes: 2 additions & 2 deletions src/app/icd/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ source_set("manager") {
deps = [ ":icd_config" ]

public_deps = [
":data",
":configuration-data",
":monitoring-table",
":notifier",
":observer",
Expand Down Expand Up @@ -102,7 +102,7 @@ source_set("monitoring-table") {
]
}

source_set("data") {
source_set("configuration-data") {
sources = [
"ICDConfigurationData.cpp",
"ICDConfigurationData.h",
Expand Down
2 changes: 1 addition & 1 deletion src/messaging/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static_library("messaging") {

if (chip_enable_icd_server) {
public_deps += [
"${chip_root}/src/app/icd:data",
"${chip_root}/src/app/icd:configuration-data",
"${chip_root}/src/app/icd:notifier",
]
}
Expand Down
2 changes: 1 addition & 1 deletion src/messaging/tests/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ chip_test_suite_using_nltest("tests") {
]

if (chip_enable_icd_server) {
public_deps += [ "${chip_root}/src/app/icd:data" ]
public_deps += [ "${chip_root}/src/app/icd:configuration-data" ]
}
}
2 changes: 1 addition & 1 deletion src/protocols/secure_channel/tests/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ chip_test_suite_using_nltest("tests") {
cflags = [ "-Wconversion" ]

if (chip_enable_icd_server) {
public_deps += [ "${chip_root}/src/app/icd:data" ]
public_deps += [ "${chip_root}/src/app/icd:configuration-data" ]
}
}

0 comments on commit 1a8efa7

Please sign in to comment.