285 lines
6.3 KiB
Plaintext
285 lines
6.3 KiB
Plaintext
# Copyright 2020 The Pigweed Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
# use this file except in compliance with the License. You may obtain a copy of
|
|
# the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations under
|
|
# the License.
|
|
|
|
import("//build_overrides/pigweed.gni")
|
|
|
|
import("$dir_pw_build/target_types.gni")
|
|
import("$dir_pw_docgen/docs.gni")
|
|
import("$dir_pw_third_party/nanopb/nanopb.gni")
|
|
import("$dir_pw_unit_test/test.gni")
|
|
|
|
config("public") {
|
|
include_dirs = [ "public" ]
|
|
visibility = [ ":*" ]
|
|
}
|
|
|
|
pw_source_set("server_api") {
|
|
public_configs = [ ":public" ]
|
|
public = [
|
|
"public/pw_rpc/nanopb/internal/method.h",
|
|
"public/pw_rpc/nanopb/internal/method_union.h",
|
|
"public/pw_rpc/nanopb/server_reader_writer.h",
|
|
]
|
|
sources = [
|
|
"method.cc",
|
|
"server_reader_writer.cc",
|
|
]
|
|
public_deps = [
|
|
":common",
|
|
"$dir_pw_rpc/raw:server_api",
|
|
"..:config",
|
|
"..:server",
|
|
dir_pw_bytes,
|
|
]
|
|
deps = [
|
|
"..:log_config",
|
|
dir_pw_log,
|
|
]
|
|
allow_circular_includes_from = [ ":common" ]
|
|
}
|
|
|
|
pw_source_set("client_api") {
|
|
public_configs = [ ":public" ]
|
|
public_deps = [
|
|
":common",
|
|
"..:client",
|
|
dir_pw_function,
|
|
]
|
|
public = [ "public/pw_rpc/nanopb/client_reader_writer.h" ]
|
|
}
|
|
|
|
pw_source_set("common") {
|
|
public_deps = [
|
|
"..:common",
|
|
dir_pw_bytes,
|
|
]
|
|
public_configs = [ ":public" ]
|
|
deps = [
|
|
"..:client",
|
|
"..:log_config",
|
|
dir_pw_log,
|
|
]
|
|
public = [ "public/pw_rpc/nanopb/internal/common.h" ]
|
|
sources = [ "common.cc" ]
|
|
|
|
if (dir_pw_third_party_nanopb != "") {
|
|
public_deps += [ "$dir_pw_third_party/nanopb" ]
|
|
}
|
|
}
|
|
|
|
pw_source_set("test_method_context") {
|
|
public_configs = [ ":public" ]
|
|
public = [
|
|
"public/pw_rpc/nanopb/fake_channel_output.h",
|
|
"public/pw_rpc/nanopb/test_method_context.h",
|
|
]
|
|
public_deps = [
|
|
":server_api",
|
|
"..:test_utils",
|
|
dir_pw_assert,
|
|
dir_pw_containers,
|
|
]
|
|
}
|
|
|
|
pw_source_set("client_testing") {
|
|
public = [ "public/pw_rpc/nanopb/client_testing.h" ]
|
|
public_deps = [
|
|
":test_method_context",
|
|
"..:client",
|
|
"../raw:client_testing",
|
|
]
|
|
}
|
|
|
|
pw_source_set("internal_test_utils") {
|
|
public = [ "pw_rpc_nanopb_private/internal_test_utils.h" ]
|
|
public_deps = []
|
|
if (dir_pw_third_party_nanopb != "") {
|
|
public_deps += [ "$dir_pw_third_party/nanopb" ]
|
|
}
|
|
}
|
|
|
|
pw_source_set("echo_service") {
|
|
public_configs = [ ":public" ]
|
|
public_deps = [ "..:protos.nanopb_rpc" ]
|
|
sources = [ "public/pw_rpc/echo_service_nanopb.h" ]
|
|
}
|
|
|
|
pw_source_set("client_integration_test") {
|
|
public_configs = [ ":public" ]
|
|
public_deps = [
|
|
"$dir_pw_sync:binary_semaphore",
|
|
"..:integration_testing",
|
|
"..:protos.nanopb_rpc",
|
|
dir_pw_assert,
|
|
dir_pw_unit_test,
|
|
]
|
|
sources = [ "client_integration_test.cc" ]
|
|
}
|
|
|
|
pw_doc_group("docs") {
|
|
sources = [ "docs.rst" ]
|
|
}
|
|
|
|
pw_test_group("tests") {
|
|
tests = [
|
|
":client_call_test",
|
|
":client_reader_writer_test",
|
|
":codegen_test",
|
|
":echo_service_test",
|
|
":fake_channel_output_test",
|
|
":method_lookup_test",
|
|
":method_test",
|
|
":method_info_test",
|
|
":method_union_test",
|
|
":server_callback_test",
|
|
":server_reader_writer_test",
|
|
":serde_test",
|
|
":stub_generation_test",
|
|
]
|
|
}
|
|
|
|
pw_test("client_call_test") {
|
|
deps = [
|
|
":client_api",
|
|
":internal_test_utils",
|
|
"..:test_protos.nanopb",
|
|
"..:test_utils",
|
|
]
|
|
sources = [ "client_call_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("client_reader_writer_test") {
|
|
deps = [
|
|
":client_api",
|
|
":client_testing",
|
|
"..:test_protos.nanopb_rpc",
|
|
]
|
|
sources = [ "client_reader_writer_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("codegen_test") {
|
|
deps = [
|
|
":client_api",
|
|
":internal_test_utils",
|
|
":server_api",
|
|
":test_method_context",
|
|
"..:test_protos.nanopb_rpc",
|
|
"..:test_utils",
|
|
]
|
|
sources = [ "codegen_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("fake_channel_output_test") {
|
|
deps = [
|
|
":server_api",
|
|
":test_method_context",
|
|
"..:test_protos.nanopb_rpc",
|
|
]
|
|
sources = [ "fake_channel_output_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("method_test") {
|
|
deps = [
|
|
":internal_test_utils",
|
|
":server_api",
|
|
":server_api",
|
|
"..:test_protos.nanopb",
|
|
"..:test_utils",
|
|
]
|
|
sources = [ "method_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("method_info_test") {
|
|
deps = [
|
|
"..:common",
|
|
"..:test_protos.nanopb_rpc",
|
|
"..:test_utils",
|
|
]
|
|
sources = [ "method_info_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("method_lookup_test") {
|
|
deps = [
|
|
":server_api",
|
|
":test_method_context",
|
|
"..:test_protos.nanopb_rpc",
|
|
"..:test_utils",
|
|
"../raw:test_method_context",
|
|
]
|
|
sources = [ "method_lookup_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("method_union_test") {
|
|
deps = [
|
|
":internal_test_utils",
|
|
":server_api",
|
|
"..:test_protos.nanopb",
|
|
"..:test_utils",
|
|
]
|
|
sources = [ "method_union_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("echo_service_test") {
|
|
deps = [
|
|
":echo_service",
|
|
":server_api",
|
|
":test_method_context",
|
|
]
|
|
sources = [ "echo_service_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("serde_test") {
|
|
deps = [
|
|
":server_api",
|
|
"..:test_protos.nanopb",
|
|
]
|
|
sources = [ "serde_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("server_callback_test") {
|
|
deps = [
|
|
":server_api",
|
|
":test_method_context",
|
|
"..:test_protos.nanopb_rpc",
|
|
]
|
|
sources = [ "server_callback_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("server_reader_writer_test") {
|
|
deps = [
|
|
":server_api",
|
|
":test_method_context",
|
|
"..:test_protos.nanopb_rpc",
|
|
]
|
|
sources = [ "server_reader_writer_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|
|
|
|
pw_test("stub_generation_test") {
|
|
deps = [ "..:test_protos.nanopb_rpc" ]
|
|
sources = [ "stub_generation_test.cc" ]
|
|
enable_if = dir_pw_third_party_nanopb != ""
|
|
}
|