| 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 ], |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'ipc_mojo', | 13 'target_name': 'ipc_mojo', |
| 14 'type': '<(component)', | 14 'type': '<(component)', |
| 15 'variables': { | 15 'variables': { |
| 16 }, | 16 }, |
| 17 'defines': [ | 17 'defines': [ |
| 18 'IPC_MOJO_IMPLEMENTATION', | 18 'IPC_MOJO_IMPLEMENTATION', |
| 19 ], | 19 ], |
| 20 'includes': [ '../../mojo/mojom_bindings_generator.gypi' ], | 20 'includes': [ '../../mojo/mojom_bindings_generator.gypi' ], |
| 21 'dependencies': [ | 21 'dependencies': [ |
| 22 '../ipc.gyp:ipc', | 22 '../ipc.gyp:ipc', |
| 23 '../../base/base.gyp:base', | 23 '../../base/base.gyp:base', |
| 24 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | |
| 25 '../../mojo/mojo_edk.gyp:mojo_system_impl', | 24 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
| 26 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | 25 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 27 ], | 26 ], |
| 28 'sources': [ | 27 'sources': [ |
| 29 'ipc_channel_mojo.cc', | 28 'ipc_channel_mojo.cc', |
| 30 'ipc_channel_mojo.h', | 29 'ipc_channel_mojo.h', |
| 31 'ipc_mojo_bootstrap.cc', | 30 'ipc_mojo_bootstrap.cc', |
| 32 'ipc_mojo_bootstrap.h', | 31 'ipc_mojo_bootstrap.h', |
| 33 'ipc_mojo_handle_attachment.cc', | 32 'ipc_mojo_handle_attachment.cc', |
| 34 'ipc_mojo_handle_attachment.h', | 33 'ipc_mojo_handle_attachment.h', |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 '../../build/isolate.gypi', | 113 '../../build/isolate.gypi', |
| 115 ], | 114 ], |
| 116 'sources': [ | 115 'sources': [ |
| 117 'ipc_mojo_unittests.isolate', | 116 'ipc_mojo_unittests.isolate', |
| 118 ], | 117 ], |
| 119 }, | 118 }, |
| 120 ], | 119 ], |
| 121 }], | 120 }], |
| 122 ], | 121 ], |
| 123 } | 122 } |
| OLD | NEW |