OLD | NEW |
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 # Chromium's GN configuration for gtest now lives at testing/gtest/BUILD.gn. | |
6 # | |
7 # This configuration is left in the tree because it is pulled by V8 and PDFium, | |
8 # and will be removed as soon as the projects switch off of it. | |
9 # | |
10 # Details at http://crbug.com/630705 and http://crrev.com/2779193002 | |
11 | |
12 import("//build_overrides/gtest.gni") | 5 import("//build_overrides/gtest.gni") |
13 | 6 |
14 config("gtest_config") { | 7 config("gtest_config") { |
15 visibility = [ | 8 visibility = [ |
16 ":*", | 9 ":*", |
17 "//testing/gmock:*", # gmock also shares this config. | 10 "//testing/gmock:*", # gmock also shares this config. |
18 ] | 11 ] |
19 | 12 |
20 defines = [ | 13 defines = [ |
21 # In order to allow regex matches in gtest to be shared between Windows | 14 # In order to allow regex matches in gtest to be shared between Windows |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 | 121 |
129 source_set("gtest_main") { | 122 source_set("gtest_main") { |
130 testonly = true | 123 testonly = true |
131 sources = [ | 124 sources = [ |
132 "src/gtest_main.cc", | 125 "src/gtest_main.cc", |
133 ] | 126 ] |
134 deps = [ | 127 deps = [ |
135 ":gtest", | 128 ":gtest", |
136 ] | 129 ] |
137 } | 130 } |
OLD | NEW |