1# Copyright (C) 2017 The Android Open Source Project 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 15import("../../gn/fuzzer.gni") 16import("../../gn/perfetto.gni") 17import("../../gn/proto_library.gni") 18import("../../gn/test.gni") 19 20# This build file should not be leaked into all embedders. Only select 21# projects should be depending on our IPC layer. 22assert(enable_perfetto_ipc) 23 24source_set("client") { 25 public_deps = [ 26 "../../include/perfetto/ext/ipc", 27 "../base:unix_socket", 28 ] 29 deps = [ 30 ":common", 31 "../../gn:default_deps", 32 "../../protos/perfetto/ipc:wire_protocol_cpp", 33 "../base", 34 ] 35 sources = [ 36 "client_impl.cc", 37 "client_impl.h", 38 "service_proxy.cc", 39 ] 40} 41 42source_set("host") { 43 public_deps = [ 44 "../../include/perfetto/ext/ipc", 45 "../base:unix_socket", 46 ] 47 deps = [ 48 ":common", 49 "../../gn:default_deps", 50 "../../protos/perfetto/ipc:wire_protocol_cpp", 51 "../base", 52 ] 53 sources = [ 54 "host_impl.cc", 55 "host_impl.h", 56 ] 57} 58 59source_set("common") { 60 public_deps = [ 61 "../../include/perfetto/ext/ipc", 62 "../../protos/perfetto/ipc:wire_protocol_cpp", 63 ] 64 deps = [ 65 "../../gn:default_deps", 66 "../base", 67 ] 68 sources = [ 69 "buffered_frame_deserializer.cc", 70 "buffered_frame_deserializer.h", 71 "deferred.cc", 72 "virtual_destructors.cc", 73 ] 74} 75 76perfetto_fuzzer_test("buffered_frame_deserializer_fuzzer") { 77 sources = [ "buffered_frame_deserializer_fuzzer.cc" ] 78 deps = [ 79 ":common", 80 "../../gn:default_deps", 81 "../../protos/perfetto/ipc:wire_protocol_cpp", 82 "../base", 83 ] 84} 85 86perfetto_unittest_source_set("unittests") { 87 testonly = true 88 deps = [ 89 ":client", 90 ":common", 91 ":host", 92 ":test_messages_cpp", 93 ":test_messages_ipc", 94 "../../gn:default_deps", 95 "../../gn:gtest_and_gmock", 96 "../../protos/perfetto/ipc:wire_protocol_cpp", 97 "../base", 98 "../base:test_support", 99 ] 100 sources = [ 101 "buffered_frame_deserializer_unittest.cc", 102 "client_impl_unittest.cc", 103 "deferred_unittest.cc", 104 "host_impl_unittest.cc", 105 "test/ipc_integrationtest.cc", 106 ] 107} 108 109perfetto_proto_library("test_messages_@TYPE@") { 110 proto_generators = [ 111 "ipc", 112 "zero", 113 "cpp", 114 ] 115 sources = [ 116 "test/client_unittest_messages.proto", 117 "test/deferred_unittest_messages.proto", 118 "test/greeter_service.proto", 119 ] 120} 121 122# This is used by Bazel BUILD rules. 123static_library("perfetto_ipc") { 124 complete_static_lib = true 125 deps = [ 126 ":client", 127 ":host", 128 "../../gn:default_deps", 129 ] 130} 131