mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
5ec525aaed
Summary: profiler file contained the CodeProfiler class, which is a bit odd. Thanks alecx Reviewed By: akindyakov Differential Revision: D13861320 fbshipit-source-id: 11d711fd1d15830d4cce0be084cc6da3b1c6589c
31 lines
845 B
Python
31 lines
845 B
Python
# Copyright (c) 2014-present, Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed as defined on the LICENSE file found in the
|
|
# root directory of this source tree.
|
|
|
|
load("//tools/build_defs/oss/osquery:cxx.bzl", "osquery_cxx_library")
|
|
load("//tools/build_defs/oss/osquery:native.bzl", "osquery_target")
|
|
load("//tools/build_defs/oss/osquery:platforms.bzl", "POSIX", "WINDOWS")
|
|
|
|
osquery_cxx_library(
|
|
name = "profiler",
|
|
headers = glob(["*.h"]),
|
|
header_namespace = "osquery/profiler",
|
|
exported_headers = glob(["*.h"]),
|
|
platform_srcs = [
|
|
(
|
|
POSIX,
|
|
["posix/code_profiler.cpp"],
|
|
),
|
|
(
|
|
WINDOWS,
|
|
["windows/code_profiler.cpp"],
|
|
),
|
|
],
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
osquery_target("osquery/core:core"),
|
|
],
|
|
)
|