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