move osquery sdk to osquery/sdk (#5498)

Summary:
Pull Request resolved: https://github.com/facebook/osquery/pull/5498

to keep in sync headers namespace and real path to target

Reviewed By: jessek, marekcirkos

Differential Revision: D14322951

fbshipit-source-id: 3e99cb5e9227529520c0ee1cac0c3d755f594ed8
This commit is contained in:
Alexander Kindyakov 2019-03-06 04:23:59 -08:00 committed by Facebook Github Bot
parent 353d7613d7
commit 64e00403cf
5 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ osquery_cxx_library(
],
link_whole = True,
tests = [
osquery_target("sdk/tests:plugin_sdk_tests"),
osquery_target("osquery/sdk/tests:plugin_sdk_tests"),
],
visibility = ["PUBLIC"],
deps = [

View File

@ -15,6 +15,6 @@ osquery_cxx_test(
visibility = ["PUBLIC"],
deps = [
osquery_target("osquery/extensions:impl_thrift"),
osquery_target("sdk:plugin_sdk"),
osquery_target("osquery/sdk:plugin_sdk"),
],
)