osquery-1/tools/build_defs/oss/osquery/python.bzl
Jesse Kornblum 56d552d2a4 Add Facebook copyright header to bzl files (#5451)
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
2019-02-19 09:29:31 -08:00

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)