Skip to content

Commit

Permalink
Move C++ command line utilities out of common (kythe#115)
Browse files Browse the repository at this point in the history
This utility file is specific to C++ and is
used only by the C++ extractor.

Partially addresses kythe#112.
  • Loading branch information
zrlk committed Jun 5, 2018
1 parent 65ef95b commit f3ebe59
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 633 deletions.
28 changes: 0 additions & 28 deletions kythe/cxx/common/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ cc_library(
cc_library(
name = "lib",
srcs = [
"CommandLineUtils.cc",
"cxx_details.cc",
"file_vname_generator.cc",
"kythe_metadata_file.cc",
Expand All @@ -60,7 +59,6 @@ cc_library(
"protobuf_metadata_file.cc",
],
hdrs = [
"CommandLineUtils.h",
"cxx_details.h",
"file_vname_generator.h",
"kythe_metadata_file.h",
Expand Down Expand Up @@ -124,32 +122,6 @@ cc_library(
],
)

cc_library(
name = "commandline_testlib",
testonly = 1,
srcs = [
"CommandLineUtilsTest.cc",
],
copts = [
"-Wno-non-virtual-dtor",
"-Wno-unused-variable",
"-Wno-implicit-fallthrough",
],
deps = [
":lib",
"//third_party:gtest",
"//third_party/llvm",
],
)

cc_test(
name = "commandline_test",
size = "small",
deps = [
":commandline_testlib",
],
)

cc_library(
name = "file_vname_generator_testlib",
testonly = 1,
Expand Down
Loading

0 comments on commit f3ebe59

Please sign in to comment.