| 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': 'gmock', | 8 'target_name': 'gmock', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 'gmock/include/gmock/gmock.h', | 23 'gmock/include/gmock/gmock.h', |
| 24 'gmock/include/gmock/internal/gmock-generated-internal-utils.h', | 24 'gmock/include/gmock/internal/gmock-generated-internal-utils.h', |
| 25 'gmock/include/gmock/internal/gmock-internal-utils.h', | 25 'gmock/include/gmock/internal/gmock-internal-utils.h', |
| 26 'gmock/include/gmock/internal/gmock-port.h', | 26 'gmock/include/gmock/internal/gmock-port.h', |
| 27 'gmock/src/gmock-all.cc', | 27 'gmock/src/gmock-all.cc', |
| 28 'gmock/src/gmock-cardinalities.cc', | 28 'gmock/src/gmock-cardinalities.cc', |
| 29 'gmock/src/gmock-internal-utils.cc', | 29 'gmock/src/gmock-internal-utils.cc', |
| 30 'gmock/src/gmock-matchers.cc', | 30 'gmock/src/gmock-matchers.cc', |
| 31 'gmock/src/gmock-spec-builders.cc', | 31 'gmock/src/gmock-spec-builders.cc', |
| 32 'gmock/src/gmock.cc', | 32 'gmock/src/gmock.cc', |
| 33 'gmock_mutant.h', # gMock helpers | 33 'gmock-support.h', # gMock helpers |
| 34 ], | 34 ], |
| 35 'sources!': [ | 35 'sources!': [ |
| 36 'gmock/src/gmock-all.cc', # Not needed by our build. | 36 'gmock/src/gmock-all.cc', # Not needed by our build. |
| 37 ], | 37 ], |
| 38 'include_dirs': [ | 38 'include_dirs': [ |
| 39 'gmock', | 39 'gmock', |
| 40 'gmock/include', | 40 'gmock/include', |
| 41 ], | 41 ], |
| 42 'direct_dependent_settings': { | 42 'direct_dependent_settings': { |
| 43 'include_dirs': [ | 43 'include_dirs': [ |
| 44 'gmock/include', # So that gmock headers can find themselves. | 44 'gmock/include', # So that gmock headers can find themselves. |
| 45 ], | 45 ], |
| 46 }, | 46 }, |
| 47 'export_dependent_settings': [ | 47 'export_dependent_settings': [ |
| 48 'gtest.gyp:gtest', | 48 'gtest.gyp:gtest', |
| 49 ], | 49 ], |
| 50 }, | 50 }, |
| 51 { | 51 { |
| 52 'target_name': 'gmock_main', | 52 'target_name': 'gmock_main', |
| 53 'type': 'static_library', | 53 'type': 'static_library', |
| 54 'dependencies': [ | 54 'dependencies': [ |
| 55 'gmock', | 55 'gmock', |
| 56 ], | 56 ], |
| 57 'sources': [ | 57 'sources': [ |
| 58 'gmock/src/gmock_main.cc', | 58 'gmock/src/gmock_main.cc', |
| 59 ], | 59 ], |
| 60 }, | 60 }, |
| 61 ], | 61 ], |
| 62 } | 62 } |
| OLD | NEW |