| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'sources/': [ | 10 'sources/': [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 ]}], | 26 ]}], |
| 27 ], | 27 ], |
| 28 }, | 28 }, |
| 29 'includes': [ | 29 'includes': [ |
| 30 'ipc.gypi', | 30 'ipc.gypi', |
| 31 ], | 31 ], |
| 32 'targets': [ | 32 'targets': [ |
| 33 { | 33 { |
| 34 'target_name': 'ipc_tests', | 34 'target_name': 'ipc_tests', |
| 35 'type': 'executable', | 35 'type': 'executable', |
| 36 'msvs_guid': 'B92AE829-E1CD-4781-824A-DCB1603A1672', | |
| 37 'dependencies': [ | 36 'dependencies': [ |
| 38 'ipc', | 37 'ipc', |
| 39 '../base/base.gyp:base', | 38 '../base/base.gyp:base', |
| 40 '../base/base.gyp:base_i18n', | 39 '../base/base.gyp:base_i18n', |
| 41 '../base/base.gyp:test_support_base', | 40 '../base/base.gyp:test_support_base', |
| 42 '../testing/gtest.gyp:gtest', | 41 '../testing/gtest.gyp:gtest', |
| 43 ], | 42 ], |
| 44 'include_dirs': [ | 43 'include_dirs': [ |
| 45 '..' | 44 '..' |
| 46 ], | 45 ], |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 ], | 86 ], |
| 88 }, | 87 }, |
| 89 ], | 88 ], |
| 90 } | 89 } |
| 91 | 90 |
| 92 # Local Variables: | 91 # Local Variables: |
| 93 # tab-width:2 | 92 # tab-width:2 |
| 94 # indent-tabs-mode:nil | 93 # indent-tabs-mode:nil |
| 95 # End: | 94 # End: |
| 96 # vim: set expandtab tabstop=2 shiftwidth=2: | 95 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |