blob: 637765205908c484292d8dcb7b6579b1b41415e6 [file]
# Copyright (C) 2025 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_host_executable.gni")
import("../../../gn/test.gni")
perfetto_host_executable("protozero_descriptor_diff") {
sources = [ "main.cc" ]
deps = [
":lib",
"../../../gn:default_deps",
"../../base",
"../../base:version",
]
}
perfetto_unittest_source_set("unittests") {
testonly = true
deps = [
":lib",
"..",
"../../../gn:default_deps",
"../../../gn:gtest_and_gmock",
"../../../protos/perfetto/common:zero",
]
sources = [ "descriptor_diff_unittest.cc" ]
}
source_set("lib") {
sources = [
"descriptor_diff.cc",
"descriptor_diff.h",
]
deps = [
"..",
"../../../gn:default_deps",
"../../../protos/perfetto/common:zero",
"../../base",
]
}