blob: 5ef6fce52c09b15b3f834a1ae914cced5394d2e8 [file] [log] [blame]
Antonio Caggiano5ec0f862021-03-26 13:16:01 +01001# Copyright (C) 2021 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
15# This meson project only supports the Perfetto SDK
16# available from release branches.
17# https://perfetto.dev/docs/instrumentation/tracing-sdk
18
19project(
20 'perfetto',
Chia-I Wu2ed2e2d2022-10-02 10:54:23 -070021 ['cpp'],
Lalit Maganti03d178e2022-11-03 16:18:51 +000022 default_options: ['cpp_std=c++17']
Antonio Caggiano5ec0f862021-03-26 13:16:01 +010023)
24
25fs = import('fs')
26
27if not fs.is_dir('sdk')
Primiano Tuccid399a652021-04-01 13:29:31 +010028 error('sdk dir not found, please checkout a release tag, e.g. v14.0')
Antonio Caggiano5ec0f862021-03-26 13:16:01 +010029endif
30
Chia-I Wu2ed2e2d2022-10-02 10:54:23 -070031cpp = meson.get_compiler('cpp')
32
33deps_perfetto = [dependency('threads')]
34
35if host_machine.system() == 'android'
36 deps_perfetto += cpp.find_library('log')
37endif
Antonio Caggiano5ec0f862021-03-26 13:16:01 +010038
39lib_perfetto = static_library(
40 'perfetto',
41 sources: 'sdk/perfetto.cc',
Chia-I Wu2ed2e2d2022-10-02 10:54:23 -070042 dependencies: deps_perfetto,
Antonio Caggiano749909b2021-10-28 12:36:01 +020043 install: true,
Antonio Caggiano5ec0f862021-03-26 13:16:01 +010044)
45
46inc_perfetto = include_directories('sdk')
47
Chia-I Wuaa5bc7d2022-10-01 22:40:40 -070048dir_perfetto_trace = join_paths(meson.current_source_dir(),
49 'protos/perfetto/trace')
50
51install_data(dir_perfetto_trace / 'perfetto_trace.proto')
52
Antonio Caggiano5ec0f862021-03-26 13:16:01 +010053dep_perfetto = declare_dependency(
54 link_with: lib_perfetto,
55 include_directories: inc_perfetto,
Chia-I Wuaa5bc7d2022-10-01 22:40:40 -070056 variables: {
57 'pkgdatadir': dir_perfetto_trace,
58 }
Antonio Caggiano5ec0f862021-03-26 13:16:01 +010059)