OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'defines': ['MOJO_IMPLEMENTATION'], | 10 'defines': ['MOJO_IMPLEMENTATION'], |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
62 ], | 62 ], |
63 }, | 63 }, |
64 { | 64 { |
65 'target_name': 'mojo_system', | 65 'target_name': 'mojo_system', |
66 # TODO(vtl): This should probably be '<(component)'; make it work. | 66 # TODO(vtl): This should probably be '<(component)'; make it work. |
67 'type': 'static_library', | 67 'type': 'static_library', |
68 'dependencies': [ | 68 'dependencies': [ |
69 '../base/base.gyp:base', | 69 '../base/base.gyp:base', |
70 ], | 70 ], |
71 'sources': [ | 71 'sources': [ |
72 'public/system/core.h', | 72 'public/system/core.h', |
viettrungluu
2013/10/09 03:44:06
Hmmm, I wonder if this should have been listed her
| |
73 'system/core.cc', | 73 'system/core.cc', |
74 'system/core_impl.cc', | 74 'system/core_impl.cc', |
75 'system/core_impl.h', | 75 'system/core_impl.h', |
76 'system/dispatcher.cc', | 76 'system/dispatcher.cc', |
77 'system/dispatcher.h', | 77 'system/dispatcher.h', |
78 'system/limits.h', | 78 'system/limits.h', |
79 'system/memory.cc', | 79 'system/memory.cc', |
80 'system/memory.h', | 80 'system/memory.h', |
81 'system/message_in_transit.cc', | 81 'system/message_in_transit.cc', |
82 'system/message_in_transit.h', | 82 'system/message_in_transit.h', |
(...skipping 30 matching lines...) Expand all Loading... | |
113 'system/message_pipe_dispatcher_unittest.cc', | 113 'system/message_pipe_dispatcher_unittest.cc', |
114 'system/message_pipe_unittest.cc', | 114 'system/message_pipe_unittest.cc', |
115 'system/simple_dispatcher_unittest.cc', | 115 'system/simple_dispatcher_unittest.cc', |
116 'system/test_utils.h', | 116 'system/test_utils.h', |
117 'system/waiter_list_unittest.cc', | 117 'system/waiter_list_unittest.cc', |
118 'system/waiter_test_utils.cc', | 118 'system/waiter_test_utils.cc', |
119 'system/waiter_test_utils.h', | 119 'system/waiter_test_utils.h', |
120 'system/waiter_unittest.cc', | 120 'system/waiter_unittest.cc', |
121 ], | 121 ], |
122 }, | 122 }, |
123 { | |
124 'target_name': 'mojo_bindings', | |
125 'type': 'static_library', | |
126 'include_dirs': [ | |
127 '..' | |
128 ], | |
129 'sources': [ | |
130 'public/bindings/lib/bindings.h', | |
131 'public/bindings/lib/bindings_internal.cc', | |
132 'public/bindings/lib/bindings_internal.h', | |
133 'public/bindings/lib/buffer.cc', | |
134 'public/bindings/lib/buffer.h', | |
135 'public/bindings/lib/message.cc', | |
136 'public/bindings/lib/message.h', | |
137 'public/bindings/lib/message_builder.cc', | |
138 'public/bindings/lib/message_builder.h', | |
139 ], | |
140 }, | |
141 { | |
142 'target_name': 'mojo_bindings_test', | |
143 'type': 'executable', | |
144 'include_dirs': [ | |
145 '..' | |
146 ], | |
147 'dependencies': [ | |
148 'mojo_bindings', | |
149 ], | |
150 'sources': [ | |
151 'public/bindings/sample/generated/sample_service_proxy.cc', | |
152 'public/bindings/sample/generated/sample_service_stub.cc', | |
153 'public/bindings/sample/sample_test.cc', | |
154 ], | |
155 }, | |
123 ], | 156 ], |
124 } | 157 } |
OLD | NEW |