• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2024 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/test.gni")
16
17source_set("perf_text") {
18  sources = [
19    "perf_text_trace_parser_impl.cc",
20    "perf_text_trace_parser_impl.h",
21    "perf_text_trace_tokenizer.cc",
22    "perf_text_trace_tokenizer.h",
23  ]
24  deps = [
25    ":perf_text_event",
26    ":perf_text_sample_line_parser",
27    "../../../../gn:default_deps",
28    "../../sorter",
29    "../../storage",
30    "../../tables",
31    "../../types",
32    "../../util:trace_blob_view_reader",
33    "../common",
34  ]
35}
36
37source_set("perf_text_event") {
38  sources = [ "perf_text_event.h" ]
39  deps = [
40    "../../../../gn:default_deps",
41    "../../containers",
42    "../../tables",
43  ]
44}
45
46source_set("perf_text_sample_line_parser") {
47  sources = [
48    "perf_text_sample_line_parser.cc",
49    "perf_text_sample_line_parser.h",
50  ]
51  deps = [
52    "../../../../gn:default_deps",
53    "../../../base",
54    "../../containers",
55  ]
56}
57