This commit is contained in:
misterg 2017-08-09 14:37:58 -04:00
parent 5a5e3c17bb
commit 66a036959f
2 changed files with 32 additions and 10 deletions

View File

@ -8,19 +8,12 @@ package(default_visibility = ["//visibility:public"])
licenses(["notice"])
# gtest public API.
GTEST_HDRS = \
glob([
"googletest/include/gtest/*.h",
"googlemock/include/gmock/*.h",
])
config_setting(
name = "win",
values = {"cpu": "x64_windows_msvc"},
)
# Google Test
# Google Test including Google Mock
cc_library(
name = "gtest",
srcs = glob(
@ -35,9 +28,13 @@ cc_library(
"googletest/src/gtest-all.cc",
"googletest/src/gtest_main.cc",
"googlemock/src/gmock-all.cc",
"googlemock/src/gmock_main.cc",
],
),
hdrs = GTEST_HDRS,
hdrs =glob([
"googletest/include/gtest/*.h",
"googlemock/include/gmock/*.h",
]),
copts = select(
{
":win": [],
@ -123,4 +120,4 @@ cc_test(
deps = [
":gtest",
],
)
)

View File

@ -0,0 +1,25 @@
# Copyright 2017 Google Inc. All Rights Reserved.
# Author: misterg@google.com (Gennadiy Civil)
#
# Description:
# Bazel BUILD file for googletest-googlemock/test, initial revision
#
""" gmock own tests """
cc_test(
name = "gmock_all_test",
size = "small",
srcs = glob(
include = [
"gmock-*.cc",
],
),
linkopts = select({
"//:win": [],
"//conditions:default": [
"-pthread",
],
}),
deps = ["//:gtest"],
)