blob: f560a99efc55efe30411eca331d86f8fffa91c9a [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("../../gn/wasm.gni")
wasm_lib("trace_processor") {
sources = [
"emscripten_task_runner.cc",
"emscripten_task_runner.h",
"wasm_bridge.cc",
]
# All the deps below are implicitly xxx($wasm_toolchain) because of the
# outer "is_wasm" block.
deps = [
":lib",
"../../buildtools:sqlite",
"../../gn:default_deps",
"../../include/perfetto/base",
"../../protos/perfetto/trace_processor:lite",
]
}
source_set("lib") {
sources = [
"blob_reader.h",
"process_table.cc",
"process_table.h",
"process_tracker.cc",
"process_tracker.h",
"query_constraints.cc",
"query_constraints.h",
"sched_slice_table.cc",
"sched_slice_table.h",
"sched_tracker.cc",
"sched_tracker.h",
"scoped_db.h",
"sqlite_utils.h",
"table.cc",
"table.h",
"thread_table.cc",
"thread_table.h",
"trace_parser.cc",
"trace_parser.h",
"trace_processor.cc",
"trace_processor.h",
"trace_processor_context.cc",
"trace_processor_context.h",
"trace_storage.cc",
"trace_storage.h",
"virtual_destructors.cc",
]
deps = [
"../../buildtools:sqlite",
"../../gn:default_deps",
"../../protos/perfetto/trace:lite",
"../../protos/perfetto/trace_processor:lite",
"../base",
"../protozero",
]
}
source_set("unittests") {
testonly = true
sources = [
"process_table_unittest.cc",
"process_tracker_unittest.cc",
"query_constraints_unittest.cc",
"sched_slice_table_unittest.cc",
"sched_tracker_unittest.cc",
"thread_table_unittest.cc",
"trace_parser_unittest.cc",
]
deps = [
":lib",
"../../buildtools:sqlite",
"../../gn:default_deps",
"../../gn:gtest_deps",
"../../protos/perfetto/trace:lite",
"../base",
]
}