mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
56d552d2a4
Summary: Pull Request resolved: https://github.com/facebook/osquery/pull/5451 This diff adds a Facebook copyright header to the bzl files used in osquery. Ultimately we want to update the files in `tools/build_defs/oss/osquery/`, but those are generated files. This diff updates the source files which we use to generate those files. Reviewed By: fmanco Differential Revision: D14131483 fbshipit-source-id: 2230dc382c26530ccd0909882fe6193ee7c674fb
16 lines
558 B
Python
16 lines
558 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
|
|
#
|
|
# This source code is licensed in accordance with the terms specified in
|
|
# the LICENSE file found in the root directory of this source tree.
|
|
|
|
load("//tools/build_defs/oss/osquery:native_functions.bzl", "osquery_native")
|
|
|
|
def osquery_python_library(**kwargs):
|
|
osquery_native.python_library(**kwargs)
|
|
|
|
def osquery_python_binary(**kwargs):
|
|
osquery_native.python_binary(**kwargs)
|
|
|
|
def osquery_prebuilt_python_library(**kwargs):
|
|
osquery_native.prebuilt_python_library(**kwargs)
|