aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test/BUILD
blob: ca597002f08f4e6c298aee18359cc43ddfa5c80d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2017 Google Inc. All Rights Reserved.
# Author: misterg@google.com (Gennadiy Civil)
#
# Description:
#   Bazel BUILD file for googletest-googlemock, 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"],
)