| 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 13 matching lines...) Expand all Loading... |
| 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-support.h', # gMock helpers | 33 'gmock-support.h', # gMock helpers |
| 34 'gmock_custom/gmock/internal/custom/gmock-port.h', |
| 34 ], | 35 ], |
| 35 'sources!': [ | 36 'sources!': [ |
| 36 'gmock/src/gmock-all.cc', # Not needed by our build. | 37 'gmock/src/gmock-all.cc', # Not needed by our build. |
| 37 ], | 38 ], |
| 38 'include_dirs': [ | 39 'include_dirs': [ |
| 40 'gmock_custom', |
| 39 'gmock', | 41 'gmock', |
| 40 'gmock/include', | 42 'gmock/include', |
| 41 ], | 43 ], |
| 42 'direct_dependent_settings': { | 44 'all_dependent_settings': { |
| 43 'include_dirs': [ | 45 'include_dirs': [ |
| 46 'gmock_custom', |
| 44 'gmock/include', # So that gmock headers can find themselves. | 47 'gmock/include', # So that gmock headers can find themselves. |
| 45 ], | 48 ], |
| 46 }, | 49 }, |
| 47 'export_dependent_settings': [ | 50 'export_dependent_settings': [ |
| 48 'gtest.gyp:gtest', | 51 'gtest.gyp:gtest', |
| 49 ], | 52 ], |
| 50 'conditions': [ | 53 'conditions': [ |
| 51 ['want_separate_host_toolset==1', { | 54 ['want_separate_host_toolset==1', { |
| 52 'toolsets': ['host', 'target'], | 55 'toolsets': ['host', 'target'], |
| 53 }, { | 56 }, { |
| 54 'toolsets': ['target'], | 57 'toolsets': ['target'], |
| 55 }], | 58 }], |
| 56 ], | 59 ], |
| 57 }, | 60 }, |
| 58 { | 61 { |
| 59 'target_name': 'gmock_main', | 62 'target_name': 'gmock_main', |
| 60 'type': 'static_library', | 63 'type': 'static_library', |
| 61 'dependencies': [ | 64 'dependencies': [ |
| 62 'gmock', | 65 'gmock', |
| 63 ], | 66 ], |
| 64 'sources': [ | 67 'sources': [ |
| 65 'gmock/src/gmock_main.cc', | 68 'gmock/src/gmock_main.cc', |
| 66 ], | 69 ], |
| 67 }, | 70 }, |
| 68 ], | 71 ], |
| 69 } | 72 } |
| OLD | NEW |