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 gmock now lives at testing/gmock/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 config("gmock_config") { | 5 config("gmock_config") { |
13 # Gmock headers need to be able to find themselves. | 6 # Gmock headers need to be able to find themselves. |
14 include_dirs = [ | 7 include_dirs = [ |
15 "//testing/gmock_custom", | 8 "//testing/gmock_custom", |
16 "include", | 9 "include", |
17 ] | 10 ] |
18 } | 11 } |
19 | 12 |
20 static_library("gmock") { | 13 static_library("gmock") { |
21 testonly = true | 14 testonly = true |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 49 |
57 static_library("gmock_main") { | 50 static_library("gmock_main") { |
58 testonly = true | 51 testonly = true |
59 sources = [ | 52 sources = [ |
60 "src/gmock_main.cc", | 53 "src/gmock_main.cc", |
61 ] | 54 ] |
62 deps = [ | 55 deps = [ |
63 ":gmock", | 56 ":gmock", |
64 ] | 57 ] |
65 } | 58 } |
OLD | NEW |