| 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': [ | |
| 7 '../build/common.gypi', | |
| 8 ], | |
| 9 'targets': [ | 6 'targets': [ |
| 10 { | 7 { |
| 11 'target_name': 'gtest', | 8 'target_name': 'gtest', |
| 12 'type': '<(library)', | 9 'type': '<(library)', |
| 13 'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B', | 10 'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B', |
| 14 'sources': [ | 11 'sources': [ |
| 15 # Sources based on files in r267 of gmock. | 12 # Sources based on files in r267 of gmock. |
| 16 'gtest/include/gtest/gtest-death-test.h', | 13 'gtest/include/gtest/gtest-death-test.h', |
| 17 'gtest/include/gtest/gtest-message.h', | 14 'gtest/include/gtest/gtest-message.h', |
| 18 'gtest/include/gtest/gtest-param-test.h', | 15 'gtest/include/gtest/gtest-param-test.h', |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 'type': '<(library)', | 96 'type': '<(library)', |
| 100 'dependencies': [ | 97 'dependencies': [ |
| 101 'gtest', | 98 'gtest', |
| 102 ], | 99 ], |
| 103 'sources': [ | 100 'sources': [ |
| 104 'gtest/src/gtest_main.cc', | 101 'gtest/src/gtest_main.cc', |
| 105 ], | 102 ], |
| 106 }, | 103 }, |
| 107 ], | 104 ], |
| 108 } | 105 } |
| OLD | NEW |