OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 = [ "include" ] |
8 } | 8 } |
9 | 9 |
10 static_library("gmock") { | 10 static_library("gmock") { |
(...skipping 26 matching lines...) Expand all Loading... |
37 direct_dependent_configs = [ | 37 direct_dependent_configs = [ |
38 ":gmock_config", | 38 ":gmock_config", |
39 "//testing/gtest:gtest_config", | 39 "//testing/gtest:gtest_config", |
40 ] | 40 ] |
41 } | 41 } |
42 | 42 |
43 static_library("gmock_main") { | 43 static_library("gmock_main") { |
44 sources = [ "src/gmock_main.cc" ] | 44 sources = [ "src/gmock_main.cc" ] |
45 deps = [ ":gmock" ] | 45 deps = [ ":gmock" ] |
46 } | 46 } |
OLD | NEW |