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

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

Issue 1842653006: Update //third_party/protobuf to version 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 8 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
(Empty)
1 cc_library(
2 name = "gtest",
3 srcs = [
4 "gmock-1.7.0/gtest/src/gtest-all.cc",
5 "gmock-1.7.0/src/gmock-all.cc",
6 ],
7 hdrs = glob([
8 "gmock-1.7.0/**/*.h",
9 "gmock-1.7.0/gtest/src/*.cc",
10 "gmock-1.7.0/src/*.cc",
11 ]),
12 includes = [
13 "gmock-1.7.0",
14 "gmock-1.7.0/gtest",
15 "gmock-1.7.0/gtest/include",
16 "gmock-1.7.0/include",
17 ],
18 linkopts = ["-pthread"],
19 visibility = ["//visibility:public"],
20 )
21
22 cc_library(
23 name = "gtest_main",
24 srcs = ["gmock-1.7.0/src/gmock_main.cc"],
25 linkopts = ["-pthread"],
26 visibility = ["//visibility:public"],
27 deps = [":gtest"],
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