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

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

Issue 219433005: Move gtest/gmock BUILD.gn files to main tree. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « build/config/win/BUILD.gn ('k') | testing/gtest/BUILD.gn » ('j') | 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 20 matching lines...) Expand all
31 "gmock_mutant.h", # gMock helpers 31 "gmock_mutant.h", # gMock helpers
32 ] 32 ]
33 33
34 # This project includes some stuff form gtest's guts. 34 # This project includes some stuff form gtest's guts.
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 if (is_win) {
42 all_dependent_configs += [
43 "//build/config/win:disable_unused_variable_warning",
44 ]
45 }
41 } 46 }
42 47
43 static_library("gmock_main") { 48 static_library("gmock_main") {
44 sources = [ "src/gmock_main.cc" ] 49 sources = [ "src/gmock_main.cc" ]
45 deps = [ ":gmock" ] 50 deps = [ ":gmock" ]
46 } 51 }
OLDNEW
« no previous file with comments | « build/config/win/BUILD.gn ('k') | testing/gtest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698