mirror of
https://gitee.com/openharmony/developtools_profiler
synced 2025-02-17 01:09:22 +00:00
![wenlong_12](/assets/img/avatar_default.png)
Signed-off-by: wenlong_12 <wenlong12@huawei.com> Signed-off-by: wenlong_12 <wenlong12@huawei.com>
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
# Copyright (C) 2023 Huawei Device Co., Ltd.
|
|
# 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("//build/ohos.gni")
|
|
import("//developtools/profiler/device/base/config.gni")
|
|
|
|
ohos_executable("timestamps") {
|
|
sources = [ "timestamps.cpp" ]
|
|
|
|
include_dirs = []
|
|
defines = []
|
|
cflags_cc = [ "-std=c++20" ]
|
|
deps = []
|
|
|
|
install_images = [ "system" ]
|
|
|
|
install_enable = true
|
|
subsystem_name = "${OHOS_PROFILER_SUBSYS_NAME}"
|
|
part_name = "${OHOS_PROFILER_PART_NAME}"
|
|
}
|
|
|
|
group("timestamps_tool") {
|
|
deps = [ ":timestamps" ]
|
|
}
|