We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6e1c3a commit d87e006Copy full SHA for d87e006
src/test_driver/tizen/.gn
@@ -13,6 +13,8 @@
13
# limitations under the License.
14
15
import("//build_overrides/build.gni")
16
+import("//build_overrides/chip.gni")
17
+import("//build_overrides/pigweed.gni")
18
19
# The location of the build configuration file.
20
buildconfig = "${build_root}/config/BUILDCONFIG.gn"
@@ -22,4 +24,16 @@ check_system_includes = true
22
24
23
25
default_args = {
26
target_os = "tizen"
27
+
28
+ pw_sys_io_BACKEND = "$dir_pw_sys_io_stdio"
29
+ pw_assert_BACKEND = "$dir_pw_assert_log"
30
+ pw_log_BACKEND = "$dir_pw_log_basic"
31
32
+ pw_unit_test_BACKEND = "$dir_pw_unit_test:light"
33
34
+ # TODO: Make sure only unit tests link against this
35
+ pw_build_LINK_DEPS = [
36
+ "$dir_pw_assert:impl",
37
+ "$dir_pw_log:impl",
38
+ ]
39
}
0 commit comments