OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("gmock") { |
| 6 testonly = true |
| 7 sources = [ |
| 8 "include/gmock/gmock-actions.h", |
| 9 "include/gmock/gmock-generated-function-mockers.h", |
| 10 "include/gmock/gmock-matchers.h", |
| 11 "include/gmock/gmock.h", |
| 12 ] |
| 13 deps = [ |
| 14 "//third_party/googletest:gmock", |
| 15 ] |
| 16 |
| 17 public_configs = [ |
| 18 "//third_party/googletest:gmock_config", |
| 19 "//third_party/googletest:gtest_config", |
| 20 ] |
| 21 } |
| 22 |
| 23 source_set("gmock_main") { |
| 24 testonly = true |
| 25 deps = [ |
| 26 "//third_party/googletest:gmock_main", |
| 27 ] |
| 28 } |
OLD | NEW |