| 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': [ | 6 'includes': [ |
| 7 '../build/common.gypi', | 7 '../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'gmock/include', | 45 'gmock/include', |
| 46 ], | 46 ], |
| 47 'direct_dependent_settings': { | 47 'direct_dependent_settings': { |
| 48 'include_dirs': [ | 48 'include_dirs': [ |
| 49 'gmock/include', # So that gmock headers can find themselves. | 49 'gmock/include', # So that gmock headers can find themselves. |
| 50 ], | 50 ], |
| 51 }, | 51 }, |
| 52 'export_dependent_settings': [ | 52 'export_dependent_settings': [ |
| 53 'gtest.gyp:gtest', | 53 'gtest.gyp:gtest', |
| 54 ], | 54 ], |
| 55 'conditions': [ | |
| 56 ['OS=="win"', { | |
| 57 'dependencies': [ | |
| 58 '../third_party/boost/boost.gyp:boost_tuple', | |
| 59 ], | |
| 60 'export_dependent_settings': [ | |
| 61 '../third_party/boost/boost.gyp:boost_tuple', | |
| 62 ] | |
| 63 }], | |
| 64 ], | |
| 65 }, | 55 }, |
| 66 { | 56 { |
| 67 # Note that calling this "gmock_main" confuses the scons build, | 57 # Note that calling this "gmock_main" confuses the scons build, |
| 68 # which uses "_main" on scons files to produce special behavior. | 58 # which uses "_main" on scons files to produce special behavior. |
| 69 'target_name': 'gmockmain', | 59 'target_name': 'gmockmain', |
| 70 'type': '<(library)', | 60 'type': '<(library)', |
| 71 'dependencies': [ | 61 'dependencies': [ |
| 72 'gmock', | 62 'gmock', |
| 73 ], | 63 ], |
| 74 'sources': [ | 64 'sources': [ |
| 75 'gmock/src/gmock_main.cc', | 65 'gmock/src/gmock_main.cc', |
| 76 ], | 66 ], |
| 77 }, | 67 }, |
| 78 ], | 68 ], |
| 79 } | 69 } |
| OLD | NEW |