Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: third_party/protobuf/gmock.BUILD

Issue 2599263002: third_party/protobuf: Update to HEAD (f52e188fe4) (Closed)
Patch Set: Address comments Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/protobuf/generate_descriptor_proto.sh ('k') | third_party/protobuf/java/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 cc_library( 1 cc_library(
2 name = "gtest", 2 name = "gtest",
3 srcs = [ 3 srcs = [
4 "gmock-1.7.0/gtest/src/gtest-all.cc", 4 "googletest/src/gtest-all.cc",
5 "gmock-1.7.0/src/gmock-all.cc", 5 "googlemock/src/gmock-all.cc",
6 ], 6 ],
7 hdrs = glob([ 7 hdrs = glob([
8 "gmock-1.7.0/**/*.h", 8 "**/*.h",
9 "gmock-1.7.0/gtest/src/*.cc", 9 "googletest/src/*.cc",
10 "gmock-1.7.0/src/*.cc", 10 "googlemock/src/*.cc",
11 ]), 11 ]),
12 includes = [ 12 includes = [
13 "gmock-1.7.0", 13 "googlemock",
14 "gmock-1.7.0/gtest", 14 "googletest",
15 "gmock-1.7.0/gtest/include", 15 "googletest/include",
16 "gmock-1.7.0/include", 16 "googlemock/include",
17 ], 17 ],
18 linkopts = ["-pthread"], 18 linkopts = ["-pthread"],
19 visibility = ["//visibility:public"], 19 visibility = ["//visibility:public"],
20 ) 20 )
21 21
22 cc_library( 22 cc_library(
23 name = "gtest_main", 23 name = "gtest_main",
24 srcs = ["gmock-1.7.0/src/gmock_main.cc"], 24 srcs = ["googlemock/src/gmock_main.cc"],
25 linkopts = ["-pthread"], 25 linkopts = ["-pthread"],
26 visibility = ["//visibility:public"], 26 visibility = ["//visibility:public"],
27 deps = [":gtest"], 27 deps = [":gtest"],
28 ) 28 )
OLDNEW
« no previous file with comments | « third_party/protobuf/generate_descriptor_proto.sh ('k') | third_party/protobuf/java/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698