diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2017-12-19 12:02:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-19 12:02:33 -0500 |
commit | 782384d11ff45b7e30f632741d08f4e7767340e8 (patch) | |
tree | 09510ad34eef68866ade872c73640ccef268cc48 | |
parent | 1865ecaf1779c2a2f210ca3768aa030206ef74ba (diff) | |
parent | a7bd3725f08fe38374544bbf8f03699fc0d32a0b (diff) | |
download | googletest-782384d11ff45b7e30f632741d08f4e7767340e8.tar.gz googletest-782384d11ff45b7e30f632741d08f4e7767340e8.tar.bz2 googletest-782384d11ff45b7e30f632741d08f4e7767340e8.zip |
Merge pull request #1212 from qzmfranklin/bazel
Also build when included in source.
-rw-r--r-- | BUILD.bazel | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BUILD.bazel b/BUILD.bazel index a4423740..922ce04e 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2017 Google Inc. +# Copyright 2017 Google Inc. # All Rights Reserved. # # @@ -41,7 +41,7 @@ config_setting( values = {"cpu": "x64_windows_msvc"}, ) -# Google Test including Google Mock +# Google Test including Google Mock cc_library( name = "gtest", srcs = glob( @@ -88,7 +88,7 @@ cc_library( srcs = [ "googlemock/src/gmock_main.cc", ], - deps = ["//:gtest"], + deps = [":gtest"], ) # The following rules build samples of how to use gTest. |