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

Side by Side Diff: testing/gmock/BUILD.gn

Issue 2779193002: Roll googletest to 1.8.0. (Closed)
Patch Set: Fix build errors. Created 3 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
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("gmock") {
6 testonly = true
7 sources = [
8 "include/gmock/gmock-actions.h",
9 "include/gmock/gmock-generated-function-mockers.h",
10 "include/gmock/gmock-matchers.h",
11 "include/gmock/gmock.h",
12 ]
13 deps = [
14 "//third_party/googletest:gmock",
15 ]
16
17 public_configs = [
18 "//third_party/googletest:gmock_config",
19 "//third_party/googletest:gtest_config",
20 ]
21 }
22
23 source_set("gmock_main") {
24 testonly = true
25 deps = [
26 "//third_party/googletest:gmock_main",
27 ]
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698