blob: 369cb71d8c17070e878f4e4115214c5c472bb3b6 [file] [log] [blame]
# Copyright (C) 2018 The Android Open Source Project
#
# 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
#
# http://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("../../../gn/perfetto.gni")
import("//build_overrides/build.gni")
source_set("wire_protocol") {
public_configs = [ "../../../buildtools:libunwindstack_config" ]
deps = [
"../../../buildtools:libunwindstack",
"../../../gn:default_deps",
"../../base",
]
sources = [
"wire_protocol.cc",
"wire_protocol.h",
]
}
source_set("daemon") {
public_configs = [ "../../../buildtools:libunwindstack_config" ]
deps = [
":wire_protocol",
"../../../buildtools:libunwindstack",
"../../../gn:default_deps",
"../../base",
"../../ipc",
]
sources = [
"bookkeeping.cc",
"bookkeeping.h",
"record_reader.cc",
"record_reader.h",
"socket_listener.cc",
"socket_listener.h",
"string_interner.cc",
"string_interner.h",
"unwinding.cc",
"unwinding.h",
]
}
source_set("client") {
public_configs = [ "../../../buildtools:libunwindstack_config" ]
deps = [
":wire_protocol",
"../../../buildtools:libunwindstack",
"../../../gn:default_deps",
"../../base",
]
sources = [
"client.cc",
"client.h",
"sampler.cc",
"sampler.h",
]
}
source_set("unittests") {
public_configs = [ "../../../buildtools:libunwindstack_config" ]
testonly = true
deps = [
":client",
":daemon",
":wire_protocol",
"../../../gn:default_deps",
"../../../gn:gtest_deps",
"../../base",
"../../base:test_support",
]
sources = [
"bookkeeping_unittest.cc",
"bounded_queue_unittest.cc",
"client_unittest.cc",
"heapprofd_integrationtest.cc",
"record_reader_unittest.cc",
"sampler_unittest.cc",
"socket_listener_unittest.cc",
"string_interner_unittest.cc",
"unwinding_unittest.cc",
"wire_protocol_unittest.cc",
]
}
executable("heapprofd") {
deps = [
":daemon",
"../../../gn:default_deps",
"../../base",
"../../ipc",
]
sources = [
"main.cc",
]
}