| 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 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 = [ |
| 8 "//testing/gmock_custom", |
| 9 "include", |
| 10 ] |
| 8 } | 11 } |
| 9 | 12 |
| 10 static_library("gmock") { | 13 static_library("gmock") { |
| 11 testonly = true | 14 testonly = true |
| 12 sources = [ | 15 sources = [ |
| 13 # Sources based on files in r173 of gmock. | 16 # Sources based on files in r173 of gmock. |
| 14 "include/gmock/gmock-actions.h", | 17 "include/gmock/gmock-actions.h", |
| 15 "include/gmock/gmock-cardinalities.h", | 18 "include/gmock/gmock-cardinalities.h", |
| 16 "include/gmock/gmock-generated-actions.h", | 19 "include/gmock/gmock-generated-actions.h", |
| 17 "include/gmock/gmock-generated-function-mockers.h", | 20 "include/gmock/gmock-generated-function-mockers.h", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 43 | 46 |
| 44 static_library("gmock_main") { | 47 static_library("gmock_main") { |
| 45 testonly = true | 48 testonly = true |
| 46 sources = [ | 49 sources = [ |
| 47 "src/gmock_main.cc", | 50 "src/gmock_main.cc", |
| 48 ] | 51 ] |
| 49 deps = [ | 52 deps = [ |
| 50 ":gmock", | 53 ":gmock", |
| 51 ] | 54 ] |
| 52 } | 55 } |
| OLD | NEW |