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

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

Issue 311833004: GN: Remove dependency on //base for gmock. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits 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
« no previous file with comments | « tools/gn/secondary/testing/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 static_library("gmock") {
(...skipping 10 matching lines...) Expand all
21 "include/gmock/gmock.h", 21 "include/gmock/gmock.h",
22 "include/gmock/internal/gmock-generated-internal-utils.h", 22 "include/gmock/internal/gmock-generated-internal-utils.h",
23 "include/gmock/internal/gmock-internal-utils.h", 23 "include/gmock/internal/gmock-internal-utils.h",
24 "include/gmock/internal/gmock-port.h", 24 "include/gmock/internal/gmock-port.h",
25 #"src/gmock-all.cc", # Not needed by our build. 25 #"src/gmock-all.cc", # Not needed by our build.
26 "src/gmock-cardinalities.cc", 26 "src/gmock-cardinalities.cc",
27 "src/gmock-internal-utils.cc", 27 "src/gmock-internal-utils.cc",
28 "src/gmock-matchers.cc", 28 "src/gmock-matchers.cc",
29 "src/gmock-spec-builders.cc", 29 "src/gmock-spec-builders.cc",
30 "src/gmock.cc", 30 "src/gmock.cc",
31 "../gmock_mutant.h", # gMock helpers
32 ] 31 ]
33 32
34 # This project includes some stuff form gtest's guts. 33 # This project includes some stuff form gtest's guts.
35 include_dirs = [ "../gtest/include" ] 34 include_dirs = [ "../gtest/include" ]
36 35
37 direct_dependent_configs = [ 36 direct_dependent_configs = [
38 ":gmock_config", 37 ":gmock_config",
39 "//testing/gtest:gtest_config", 38 "//testing/gtest:gtest_config",
40 ] 39 ]
41
42 deps = [ "//base" ]
43 } 40 }
44 41
45 static_library("gmock_main") { 42 static_library("gmock_main") {
46 sources = [ "src/gmock_main.cc" ] 43 sources = [ "src/gmock_main.cc" ]
47 deps = [ ":gmock" ] 44 deps = [ ":gmock" ]
48 } 45 }
OLDNEW
« no previous file with comments | « tools/gn/secondary/testing/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698