Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
gennadiycivil committed Aug 9, 2017
1 parent ab8f2b0 commit ac885f3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 98 deletions.
78 changes: 9 additions & 69 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,11 @@ package(default_visibility = ["//visibility:public"])

licenses(["notice"])

cc_library(
name = "gmock",
srcs = glob(
include = [
"googlemock/src/*.cc",
"googlemock/include/gmock/**/*.h",
],
exclude = [
"googlemock/src/gmock-all.cc",
],
),
hdrs = glob([
"googlemock/include/gmock/*.h",
]),
includes = [
"googlemock",
"googlemock/include",
],
linkopts = select({
":win": [],
"//conditions:default": ["-pthread"],
}),
deps = [
":gtest",
],
)

# gtest public API.
GTEST_HDRS = \
glob([
"googletest/include/gtest/*.h",
"googlemock/include/gmock/*.h",
])

config_setting(
Expand All @@ -54,10 +28,13 @@ cc_library(
"googletest/src/*.cc",
"googletest/src/*.h",
"googletest/include/gtest/**/*.h",
"googlemock/src/*.cc",
"googlemock/include/gmock/**/*.h",
],
exclude = [
"googletest/src/gtest-all.cc",
"googletest/src/gtest_main.cc",
"googlemock/src/gmock-all.cc",
],
),
hdrs = GTEST_HDRS,
Expand All @@ -68,39 +45,8 @@ cc_library(
},
),
includes = [
"googletest",
"googletest/include",
],
linkopts = select({
":win": [],
"//conditions:default": [
"-pthread",
],
}),
)

## Google Test with exceptions enabled.
cc_library(
name = "gtest_ex",
srcs = glob(
include = [
"googletest/src/*.cc",
"googletest/src/*.h",
"googletest/include/gtest/**/*.h",
],
exclude = [
"googletest/src/gtest-all.cc",
"googletest/src/gtest_main.cc",
],
),
hdrs = GTEST_HDRS,
copts = select(
{
":win": ["-DGTEST_ENABLE_CATCH_EXCEPTIONS_=1"],
"//conditions:default": ["-fexceptions","-pthread"],
},
),
includes = [
"googlemock",
"googlemock/include",
"googletest",
"googletest/include",
],
Expand All @@ -114,15 +60,9 @@ cc_library(

cc_library(
name = "gtest_main",
srcs = glob(
include = [
"googletest/src/gtest_main.cc",
],
),
hdrs = glob([
"googletest/include/gtest/*.h",
"googletest/include/gtest/**/*.h",
]),
srcs = [
"googletest/src/gtest_main.cc",
],
includes = [
"googletest",
"googletest/include",
Expand Down
32 changes: 3 additions & 29 deletions googletest/test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ cc_test(
"gtest-listener_test.cc",
],
deps = [
"//:gtest_main",
"//:gtest",
],
)

Expand All @@ -96,7 +96,7 @@ cc_test(
"gtest-unittest-api_test.cc",
],
deps = [
"//:gtest_main",
"//:gtest",
],
)

Expand All @@ -109,34 +109,8 @@ cc_test(
"gtest-param-test_test.h",
],
deps = [
"//:gtest_main",
"//:gtest",
],
)

#Verifies interaction of death tests and exceptions.
cc_test(
name = "gtest-death-test_ex_catch_test",
size = "medium",
srcs = ["gtest-death-test_ex_test.cc"],
copts = select({
"//:win": ["-DGTEST_ENABLE_CATCH_EXCEPTIONS_=1"],
"//conditions:default": ["-fexceptions"],
}),
defines = ["GTEST_ENABLE_CATCH_EXCEPTIONS_=1"],
deps = ["//:gtest_ex"],
)

cc_test(
name = "gtest-death-test_ex_nocatch_test",
size = "medium",
srcs = ["gtest-death-test_ex_test.cc"],
copts = select({
"//:win": ["-DGTEST_ENABLE_CATCH_EXCEPTIONS_=1"],
"//conditions:default": ["-fexceptions"],
}),
defines = ["GTEST_ENABLE_CATCH_EXCEPTIONS_=0"],
deps = ["//:gtest_ex"],
)



0 comments on commit ac885f3

Please sign in to comment.