| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'gmock', | 8 'target_name': 'gmock', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'msvs_guid': 'F9D886ED-B09F-4B74-932F-D8E4691E6B7F', | 10 'msvs_guid': 'F9D886ED-B09F-4B74-932F-D8E4691E6B7F', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 'gmock/include/gmock/internal/gmock-generated-internal-utils.h', | 26 'gmock/include/gmock/internal/gmock-generated-internal-utils.h', |
| 27 'gmock/include/gmock/internal/gmock-internal-utils.h', | 27 'gmock/include/gmock/internal/gmock-internal-utils.h', |
| 28 'gmock/include/gmock/internal/gmock-port.h', | 28 'gmock/include/gmock/internal/gmock-port.h', |
| 29 'gmock/src/gmock-all.cc', | 29 'gmock/src/gmock-all.cc', |
| 30 'gmock/src/gmock-cardinalities.cc', | 30 'gmock/src/gmock-cardinalities.cc', |
| 31 'gmock/src/gmock-internal-utils.cc', | 31 'gmock/src/gmock-internal-utils.cc', |
| 32 'gmock/src/gmock-matchers.cc', | 32 'gmock/src/gmock-matchers.cc', |
| 33 'gmock/src/gmock-printers.cc', | 33 'gmock/src/gmock-printers.cc', |
| 34 'gmock/src/gmock-spec-builders.cc', | 34 'gmock/src/gmock-spec-builders.cc', |
| 35 'gmock/src/gmock.cc', | 35 'gmock/src/gmock.cc', |
| 36 'gmock_mutant.h', # gMock helpers |
| 36 ], | 37 ], |
| 37 'sources!': [ | 38 'sources!': [ |
| 38 'gmock/src/gmock-all.cc', # Not needed by our build. | 39 'gmock/src/gmock-all.cc', # Not needed by our build. |
| 39 ], | 40 ], |
| 40 'include_dirs': [ | 41 'include_dirs': [ |
| 41 'gmock', | 42 'gmock', |
| 42 'gmock/include', | 43 'gmock/include', |
| 43 ], | 44 ], |
| 44 'direct_dependent_settings': { | 45 'direct_dependent_settings': { |
| 45 'include_dirs': [ | 46 'include_dirs': [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 63 ], | 64 ], |
| 64 }, | 65 }, |
| 65 ], | 66 ], |
| 66 } | 67 } |
| 67 | 68 |
| 68 # Local Variables: | 69 # Local Variables: |
| 69 # tab-width:2 | 70 # tab-width:2 |
| 70 # indent-tabs-mode:nil | 71 # indent-tabs-mode:nil |
| 71 # End: | 72 # End: |
| 72 # vim: set expandtab tabstop=2 shiftwidth=2: | 73 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |