1# Copyright (C) 2019 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/perfetto.gni") 16 17source_set("symbolizer") { 18 public_deps = [ "../../../include/perfetto/ext/base" ] 19 deps = [ "../../../gn:default_deps" ] 20 sources = [ 21 "local_symbolizer.cc", 22 "local_symbolizer.h", 23 "symbolizer.cc", 24 "symbolizer.h", 25 ] 26} 27 28source_set("symbolize_database") { 29 public_deps = [ 30 ":symbolizer", 31 "../../../include/perfetto/ext/base", 32 ] 33 deps = [ 34 "../../../gn:default_deps", 35 "../../../include/perfetto/protozero", 36 "../../../include/perfetto/trace_processor:trace_processor", 37 "../../../protos/perfetto/trace:zero", 38 "../../../protos/perfetto/trace/profiling:zero", 39 ] 40 sources = [ 41 "symbolize_database.cc", 42 "symbolize_database.h", 43 ] 44} 45