| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../build/common.gypi', | 7 '../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'gmock', | 11 'target_name': 'gmock', |
| 12 'type': '<(library)', | 12 'type': '<(library)', |
| 13 'msvs_guid': 'F9D886ED-B09F-4B74-932F-D8E4691E6B7F', | 13 'msvs_guid': 'F9D886ED-B09F-4B74-932F-D8E4691E6B7F', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 'gtest.gyp:gtest', | 15 'gtest.gyp:gtest', |
| 16 ], | 16 ], |
| 17 'sources': [ | 17 'sources': [ |
| 18 # Sources based on files in r173 of gmock. |
| 18 'gmock/include/gmock/gmock-actions.h', | 19 'gmock/include/gmock/gmock-actions.h', |
| 19 'gmock/include/gmock/gmock-cardinalities.h', | 20 'gmock/include/gmock/gmock-cardinalities.h', |
| 20 'gmock/include/gmock/gmock-generated-actions.h', | 21 'gmock/include/gmock/gmock-generated-actions.h', |
| 21 'gmock/include/gmock/gmock-generated-function-mockers.h', | 22 'gmock/include/gmock/gmock-generated-function-mockers.h', |
| 22 'gmock/include/gmock/gmock-generated-matchers.h', | 23 'gmock/include/gmock/gmock-generated-matchers.h', |
| 23 'gmock/include/gmock/gmock-generated-nice-strict.h', | 24 'gmock/include/gmock/gmock-generated-nice-strict.h', |
| 24 'gmock/include/gmock/gmock-matchers.h', | 25 'gmock/include/gmock/gmock-matchers.h', |
| 25 'gmock/include/gmock/gmock-printers.h', | 26 'gmock/include/gmock/gmock-printers.h', |
| 26 'gmock/include/gmock/gmock-spec-builders.h', | 27 'gmock/include/gmock/gmock-spec-builders.h', |
| 27 'gmock/include/gmock/gmock.h', | 28 'gmock/include/gmock/gmock.h', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 'type': '<(library)', | 70 'type': '<(library)', |
| 70 'dependencies': [ | 71 'dependencies': [ |
| 71 'gmock', | 72 'gmock', |
| 72 ], | 73 ], |
| 73 'sources': [ | 74 'sources': [ |
| 74 'gmock/src/gmock_main.cc', | 75 'gmock/src/gmock_main.cc', |
| 75 ], | 76 ], |
| 76 }, | 77 }, |
| 77 ], | 78 ], |
| 78 } | 79 } |
| OLD | NEW |