| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'includes': [ | 9 'includes': [ |
| 10 ], | 10 ], |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 ], | 42 ], |
| 43 # TODO(gregoryd): direct_dependent_settings should be shared with the | 43 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 44 # 64-bit target, but it doesn't work due to a bug in gyp | 44 # 64-bit target, but it doesn't work due to a bug in gyp |
| 45 'direct_dependent_settings': { | 45 'direct_dependent_settings': { |
| 46 'include_dirs': [ | 46 'include_dirs': [ |
| 47 '..', | 47 '..', |
| 48 ], | 48 ], |
| 49 }, | 49 }, |
| 50 }, | 50 }, |
| 51 { | 51 { |
| 52 'target_name': 'ipc_mojo_support', | |
| 53 'type': 'static_library', | |
| 54 'dependencies': [ | |
| 55 '../../base/base.gyp:base', | |
| 56 '../../mojo/mojo_edk.gyp:mojo_system_impl', | |
| 57 ], | |
| 58 'sources': [ | |
| 59 'scoped_ipc_support.cc', | |
| 60 'scoped_ipc_support.h', | |
| 61 ], | |
| 62 }, | |
| 63 { | |
| 64 'target_name': 'ipc_mojo_unittests', | 52 'target_name': 'ipc_mojo_unittests', |
| 65 'type': '<(gtest_target_type)', | 53 'type': '<(gtest_target_type)', |
| 66 'dependencies': [ | 54 'dependencies': [ |
| 67 '../ipc.gyp:ipc', | 55 '../ipc.gyp:ipc', |
| 68 '../ipc.gyp:test_support_ipc', | 56 '../ipc.gyp:test_support_ipc', |
| 69 '../../base/base.gyp:base', | 57 '../../base/base.gyp:base', |
| 70 '../../base/base.gyp:base_i18n', | 58 '../../base/base.gyp:base_i18n', |
| 71 '../../base/base.gyp:test_support_base', | 59 '../../base/base.gyp:test_support_base', |
| 72 '../../mojo/mojo_edk.gyp:mojo_common_test_support', | 60 '../../mojo/mojo_edk.gyp:mojo_common_test_support', |
| 73 '../../mojo/mojo_edk.gyp:mojo_system_impl', | 61 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 '../../build/isolate.gypi', | 114 '../../build/isolate.gypi', |
| 127 ], | 115 ], |
| 128 'sources': [ | 116 'sources': [ |
| 129 'ipc_mojo_unittests.isolate', | 117 'ipc_mojo_unittests.isolate', |
| 130 ], | 118 ], |
| 131 }, | 119 }, |
| 132 ], | 120 ], |
| 133 }], | 121 }], |
| 134 ], | 122 ], |
| 135 } | 123 } |
| OLD | NEW |