File tree 6 files changed +49
-3
lines changed
build/toolchain/pw_fuzzer
6 files changed +49
-3
lines changed Original file line number Diff line number Diff line change 340
340
[submodule "third_party/googletest "]
341
341
path = third_party/googletest
342
342
url = https://github.com/google/googletest
343
- platforms = linux,darwin
343
+ platforms = linux,android, darwin,tizen
344
344
[submodule "third_party/re2/src "]
345
345
path = third_party/re2/src
346
346
url = https://github.com/google/re2.git
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
import (" //build_overrides/build.gni" )
16
+ import (" //build_overrides/googletest.gni" )
16
17
import (" //build_overrides/pigweed.gni" )
17
18
18
19
# The location of the build configuration file.
@@ -33,6 +34,11 @@ default_args = {
33
34
# GN target to use for the default Python build venv.
34
35
pw_build_PYTHON_BUILD_VENV = " //:matter_build_venv"
35
36
37
+ # Use the GoogleTest backend for unit tests running on host.
38
+ pw_unit_test_BACKEND = " $dir_pw_unit_test :googletest"
39
+ pw_unit_test_MAIN = " $dir_pigweed /third_party/googletest:gmock_main"
40
+ dir_pw_third_party_googletest = " $dir_googletest "
41
+
36
42
# Required for pw_unit_test
37
43
pw_sys_io_BACKEND = " $dir_pw_sys_io_stdio "
38
44
pw_assert_BACKEND = " $dir_pw_assert_log "
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
import (" //build_overrides/build.gni" )
16
+ import (" //build_overrides/googletest.gni" )
16
17
import (" //build_overrides/pigweed.gni" )
17
18
18
19
import (" $dir_pigweed /targets/host/target_toolchains.gni" )
@@ -61,7 +62,7 @@ gcc_toolchain("chip_pw_fuzztest") {
61
62
62
63
dir_pw_third_party_abseil_cpp = " //third_party/abseil-cpp/src"
63
64
dir_pw_third_party_fuzztest = " //third_party/fuzztest"
64
- dir_pw_third_party_googletest = " //third_party/googletest "
65
+ dir_pw_third_party_googletest = " $dir_googletest "
65
66
66
67
# TODO: Seems that re2 support within FuzzTest was deprecated, keeping it defined is triggering warning
67
68
# Remove if re2 is indeed not needed
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2024 Project CHIP Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ declare_args () {
16
+ # Location of the GoogleTest repository.
17
+ dir_googletest = " //third_party/googletest"
18
+ }
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2024 Project CHIP Authors
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ declare_args () {
16
+ # Location of the GoogleTest repository.
17
+ dir_googletest = " //third_party/connectedhomeip/third_party/googletest"
18
+ }
Original file line number Diff line number Diff line change 14
14
15
15
import (" //build_overrides/build.gni" )
16
16
import (" //build_overrides/chip.gni" )
17
+ import (" //build_overrides/googletest.gni" )
17
18
import (" //build_overrides/pigweed.gni" )
18
19
19
20
# The location of the build configuration file.
@@ -29,7 +30,9 @@ default_args = {
29
30
pw_assert_BACKEND = " $dir_pw_assert_log "
30
31
pw_log_BACKEND = " $dir_pw_log_basic "
31
32
32
- pw_unit_test_BACKEND = " $dir_pw_unit_test :light"
33
+ pw_unit_test_BACKEND = " $dir_pw_unit_test :googletest"
34
+ pw_unit_test_MAIN = " $dir_pigweed /third_party/googletest:gmock_main"
35
+ dir_pw_third_party_googletest = " $dir_googletest "
33
36
34
37
# TODO: Make sure only unit tests link against this
35
38
pw_build_LINK_DEPS = [
You can’t perform that action at this time.
0 commit comments