Skip to content

Commit 6d0de7d

Browse files
Neural-Link Teamtensorflow-copybara
authored andcommitted
Move third_party directories to corresponding dir.
PiperOrigin-RevId: 546991881
1 parent 559cc0b commit 6d0de7d

File tree

14 files changed

+8
-9
lines changed

14 files changed

+8
-9
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ workspace(name = "org_tensorflow_neural_structured_learning")
33
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
44

55
# farmhash
6-
load("//research/carls/third_party/farmhash:workspace.bzl", farmhash = "repo")
6+
load("//research/carls/knowledge_bank/farmhash:workspace.bzl", farmhash = "repo")
77
farmhash()
88

99
# leveldb
10-
load("//research/carls/third_party/leveldb:workspace.bzl", leveldb = "repo")
10+
load("//research/carls/knowledge_bank/leveldb:workspace.bzl", leveldb = "repo")
1111
leveldb()
1212

1313
# rocksdb
14-
load("//research/carls/third_party/rocksdb:workspace.bzl", rocksdb = "repo")
14+
load("//research/carls/knowledge_bank/rocksdb:workspace.bzl", rocksdb = "repo")
1515
rocksdb()
1616

1717
# absl

research/carls/bazel/repo.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ cc_library(
188188
def _protobuf_includes_repo_impl(repo_ctx):
189189
tf_include_path = _find_tf_include_path(repo_ctx)
190190
repo_ctx.symlink(tf_include_path, "tf_includes")
191-
repo_ctx.symlink(Label("//research/carls/third_party:protobuf.BUILD"), "BUILD")
191+
repo_ctx.symlink(Label("//research/carls:protobuf.BUILD"), "BUILD")
192192

193193
def _tensorflow_includes_repo_impl(repo_ctx):
194194
tf_include_path = _find_tf_include_path(repo_ctx)

research/carls/third_party/farmhash/workspace.bzl renamed to research/carls/knowledge_bank/farmhash/workspace.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def repo():
1111

1212
http_archive(
1313
name = "farmhash_archive",
14-
build_file = "//research/carls/third_party/farmhash:farmhash.BUILD",
14+
build_file = "//research/carls/knowledge_bank/farmhash:farmhash.BUILD",
1515
sha256 = FARMHASH_SHA256,
1616
strip_prefix = "farmhash-{commit}".format(commit = FARMHASH_COMMIT),
1717
urls = [

research/carls/third_party/leveldb/workspace.bzl renamed to research/carls/knowledge_bank/leveldb/workspace.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def repo():
1111

1212
http_archive(
1313
name = "com_google_leveldb",
14-
build_file = "//research/carls/third_party/leveldb:leveldb.BUILD",
14+
build_file = "//research/carls/knowledge_bank/leveldb:leveldb.BUILD",
1515
patch_cmds = [
1616
"""mkdir leveldb; cp include/leveldb/* leveldb""",
1717
],

0 commit comments

Comments
 (0)