| OLD | NEW |
| 1 # Copyright 2014 the V8 project authors. All rights reserved. | 1 # Copyright 2014 the V8 project 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': 'gtest', | 8 'target_name': 'gtest', |
| 9 'toolsets': ['host', 'target'], | 9 'toolsets': ['host', 'target'], |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 'gtest/include/gtest/internal/gtest-type-util.h', | 30 'gtest/include/gtest/internal/gtest-type-util.h', |
| 31 'gtest/src/gtest-all.cc', | 31 'gtest/src/gtest-all.cc', |
| 32 'gtest/src/gtest-death-test.cc', | 32 'gtest/src/gtest-death-test.cc', |
| 33 'gtest/src/gtest-filepath.cc', | 33 'gtest/src/gtest-filepath.cc', |
| 34 'gtest/src/gtest-internal-inl.h', | 34 'gtest/src/gtest-internal-inl.h', |
| 35 'gtest/src/gtest-port.cc', | 35 'gtest/src/gtest-port.cc', |
| 36 'gtest/src/gtest-printers.cc', | 36 'gtest/src/gtest-printers.cc', |
| 37 'gtest/src/gtest-test-part.cc', | 37 'gtest/src/gtest-test-part.cc', |
| 38 'gtest/src/gtest-typed-test.cc', | 38 'gtest/src/gtest-typed-test.cc', |
| 39 'gtest/src/gtest.cc', | 39 'gtest/src/gtest.cc', |
| 40 'multiprocess_func_list.cc', | |
| 41 'multiprocess_func_list.h', | |
| 42 'platform_test.h', | |
| 43 ], | 40 ], |
| 44 'sources!': [ | 41 'sources!': [ |
| 45 'gtest/src/gtest-all.cc', # Not needed by our build. | 42 'gtest/src/gtest-all.cc', # Not needed by our build. |
| 46 ], | 43 ], |
| 47 'include_dirs': [ | 44 'include_dirs': [ |
| 48 'gtest', | 45 'gtest', |
| 49 'gtest/include', | 46 'gtest/include', |
| 50 ], | 47 ], |
| 51 'dependencies': [ | 48 'dependencies': [ |
| 52 'gtest_prod', | 49 'gtest_prod', |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 { | 146 { |
| 150 'target_name': 'gtest_prod', | 147 'target_name': 'gtest_prod', |
| 151 'toolsets': ['host', 'target'], | 148 'toolsets': ['host', 'target'], |
| 152 'type': 'none', | 149 'type': 'none', |
| 153 'sources': [ | 150 'sources': [ |
| 154 'gtest/include/gtest/gtest_prod.h', | 151 'gtest/include/gtest/gtest_prod.h', |
| 155 ], | 152 ], |
| 156 }, | 153 }, |
| 157 ], | 154 ], |
| 158 } | 155 } |
| OLD | NEW |