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

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

Issue 1758653004: [GN] Set testonly unconditionally. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « base/test/BUILD.gn ('k') | build/secondary/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 2014 The Chromium Authors. All rights reserved. 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 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") {
11 # TODO http://crbug.com/412064 enable this flag all the time. 11 testonly = true
12 testonly = !is_component_build
13 sources = [ 12 sources = [
14 # Sources based on files in r173 of gmock. 13 # Sources based on files in r173 of gmock.
15 "include/gmock/gmock-actions.h", 14 "include/gmock/gmock-actions.h",
16 "include/gmock/gmock-cardinalities.h", 15 "include/gmock/gmock-cardinalities.h",
17 "include/gmock/gmock-generated-actions.h", 16 "include/gmock/gmock-generated-actions.h",
18 "include/gmock/gmock-generated-function-mockers.h", 17 "include/gmock/gmock-generated-function-mockers.h",
19 "include/gmock/gmock-generated-matchers.h", 18 "include/gmock/gmock-generated-matchers.h",
20 "include/gmock/gmock-generated-nice-strict.h", 19 "include/gmock/gmock-generated-nice-strict.h",
21 "include/gmock/gmock-matchers.h", 20 "include/gmock/gmock-matchers.h",
22 "include/gmock/gmock-spec-builders.h", 21 "include/gmock/gmock-spec-builders.h",
(...skipping 13 matching lines...) Expand all
36 # This project includes some stuff form gtest's guts. 35 # This project includes some stuff form gtest's guts.
37 include_dirs = [ "../gtest/include" ] 36 include_dirs = [ "../gtest/include" ]
38 37
39 public_configs = [ 38 public_configs = [
40 ":gmock_config", 39 ":gmock_config",
41 "//testing/gtest:gtest_config", 40 "//testing/gtest:gtest_config",
42 ] 41 ]
43 } 42 }
44 43
45 static_library("gmock_main") { 44 static_library("gmock_main") {
46 # TODO http://crbug.com/412064 enable this flag all the time. 45 testonly = true
47 testonly = !is_component_build
48 sources = [ 46 sources = [
49 "src/gmock_main.cc", 47 "src/gmock_main.cc",
50 ] 48 ]
51 deps = [ 49 deps = [
52 ":gmock", 50 ":gmock",
53 ] 51 ]
54 } 52 }
OLDNEW
« no previous file with comments | « base/test/BUILD.gn ('k') | build/secondary/testing/gtest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698