File tree 2 files changed +8
-5
lines changed
config/tizen/chip-gn/platform
examples/lighting-app/tizen
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,6 @@ import("${chip_root}/config/tizen/chip-gn/args.gni")
20
20
import (" ${ build_root } /config/linux/pkg_config.gni" )
21
21
import (" ${ chip_root } /src/platform/device.gni" )
22
22
23
- pkg_config (" capi-system-peripheral-io" ) {
24
- packages = [ " capi-system-peripheral-io" ]
25
- }
26
-
27
23
pkg_config (" dlog" ) {
28
24
packages = [ " dlog" ]
29
25
}
@@ -73,7 +69,6 @@ source_set("tizen") {
73
69
" :glib" ,
74
70
" :capi-appfw-preference" ,
75
71
" :capi-system-info" ,
76
- " :capi-system-peripheral-io" ,
77
72
]
78
73
79
74
if (chip_mdns == " platform" ) {
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
+ import (" //build_overrides/build.gni" )
15
16
import (" //build_overrides/chip.gni" )
16
17
import (" //build_overrides/tizen.gni" )
17
18
19
+ import (" ${ build_root } /config/linux/pkg_config.gni" )
18
20
import (" ${ chip_root } /build/chip/linux/gdbus_library.gni" )
19
21
import (" ${ chip_root } /build/chip/tools.gni" )
20
22
import (" ${ chip_root } /src/app/common_flags.gni" )
@@ -27,6 +29,10 @@ declare_args() {
27
29
chip_examples_enable_ui = false
28
30
}
29
31
32
+ pkg_config (" capi-system-peripheral-io" ) {
33
+ packages = [ " capi-system-peripheral-io" ]
34
+ }
35
+
30
36
gdbus_library (" chip-lighting-app-manager" ) {
31
37
sources = [ " xml/DBusLightApp.xml" ]
32
38
interface_prefix = " org.tizen.matter.example.lighting"
@@ -50,6 +56,8 @@ executable("chip-lighting-app") {
50
56
" ${ chip_root } /src/lib" ,
51
57
]
52
58
59
+ configs += [ " :capi-system-peripheral-io" ]
60
+
53
61
if (chip_examples_enable_ui ) {
54
62
sources += [ " src/DBusInterface.cpp" ]
55
63
deps += [ " :chip-lighting-app-manager" ]
You can’t perform that action at this time.
0 commit comments