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

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

Issue 305993002: Update skia and ui GN builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git log Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 config("gmock_config") { 5 config("gmock_config") {
6 # Gmock headers need to be able to find themselves. 6 # Gmock headers need to be able to find themselves.
7 include_dirs = [ "include" ] 7 include_dirs = [ "include" ]
8 } 8 }
9 9
10 static_library("gmock") { 10 source_set("gmock") {
11 sources = [ 11 sources = [
12 # Sources based on files in r173 of gmock. 12 # Sources based on files in r173 of gmock.
13 "include/gmock/gmock-actions.h", 13 "include/gmock/gmock-actions.h",
14 "include/gmock/gmock-cardinalities.h", 14 "include/gmock/gmock-cardinalities.h",
15 "include/gmock/gmock-generated-actions.h", 15 "include/gmock/gmock-generated-actions.h",
16 "include/gmock/gmock-generated-function-mockers.h", 16 "include/gmock/gmock-generated-function-mockers.h",
17 "include/gmock/gmock-generated-matchers.h", 17 "include/gmock/gmock-generated-matchers.h",
18 "include/gmock/gmock-generated-nice-strict.h", 18 "include/gmock/gmock-generated-nice-strict.h",
19 "include/gmock/gmock-matchers.h", 19 "include/gmock/gmock-matchers.h",
20 "include/gmock/gmock-spec-builders.h", 20 "include/gmock/gmock-spec-builders.h",
(...skipping 14 matching lines...) Expand all
35 include_dirs = [ "../gtest/include" ] 35 include_dirs = [ "../gtest/include" ]
36 36
37 direct_dependent_configs = [ 37 direct_dependent_configs = [
38 ":gmock_config", 38 ":gmock_config",
39 "//testing/gtest:gtest_config", 39 "//testing/gtest:gtest_config",
40 ] 40 ]
41 41
42 deps = [ "//base" ] 42 deps = [ "//base" ]
43 } 43 }
44 44
45 static_library("gmock_main") { 45 source_set("gmock_main") {
46 sources = [ "src/gmock_main.cc" ] 46 sources = [ "src/gmock_main.cc" ]
47 deps = [ ":gmock" ] 47 deps = [ ":gmock" ]
48 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698