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 10 matching lines...) Expand all Loading... |
21 '../ipc.gyp:ipc', | 21 '../ipc.gyp:ipc', |
22 '../../base/base.gyp:base', | 22 '../../base/base.gyp:base', |
23 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 23 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
24 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', | 24 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', |
25 '../../mojo/mojo_base.gyp:mojo_environment_chromium', | 25 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
26 '../../mojo/mojo_base.gyp:mojo_system_impl', | 26 '../../mojo/mojo_base.gyp:mojo_system_impl', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'ipc_channel_mojo.cc', | 29 'ipc_channel_mojo.cc', |
30 'ipc_channel_mojo.h', | 30 'ipc_channel_mojo.h', |
| 31 'ipc_channel_mojo_readers.cc', |
| 32 'ipc_channel_mojo_readers.h', |
31 'ipc_message_pipe_reader.cc', | 33 'ipc_message_pipe_reader.cc', |
32 'ipc_message_pipe_reader.h', | 34 'ipc_message_pipe_reader.h', |
33 ], | 35 ], |
34 # TODO(gregoryd): direct_dependent_settings should be shared with the | 36 # TODO(gregoryd): direct_dependent_settings should be shared with the |
35 # 64-bit target, but it doesn't work due to a bug in gyp | 37 # 64-bit target, but it doesn't work due to a bug in gyp |
36 'direct_dependent_settings': { | 38 'direct_dependent_settings': { |
37 'include_dirs': [ | 39 'include_dirs': [ |
38 '..', | 40 '..', |
39 ], | 41 ], |
40 }, | 42 }, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 '..' | 86 '..' |
85 ], | 87 ], |
86 'sources': [ | 88 'sources': [ |
87 'ipc_mojo_perftest.cc', | 89 'ipc_mojo_perftest.cc', |
88 ], | 90 ], |
89 'conditions': [ | 91 'conditions': [ |
90 ], | 92 ], |
91 }, | 93 }, |
92 ], | 94 ], |
93 } | 95 } |
OLD | NEW |