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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'mojo_variables.gypi', | 10 'mojo_variables.gypi', |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 'shell/public/cpp/message_loop_ref.h', | 170 'shell/public/cpp/message_loop_ref.h', |
171 'shell/public/cpp/names.h', | 171 'shell/public/cpp/names.h', |
172 'shell/public/cpp/shell.h', | 172 'shell/public/cpp/shell.h', |
173 'shell/public/cpp/shell_client.h', | 173 'shell/public/cpp/shell_client.h', |
174 'shell/public/cpp/shell_connection.h', | 174 'shell/public/cpp/shell_connection.h', |
175 ], | 175 ], |
176 'dependencies': [ | 176 'dependencies': [ |
177 '../base/base.gyp:base_i18n', | 177 '../base/base.gyp:base_i18n', |
178 'mojo_application_bindings', | 178 'mojo_application_bindings', |
179 'mojo_public.gyp:mojo_message_pump_lib', | 179 'mojo_public.gyp:mojo_message_pump_lib', |
180 'mojo_services.gyp:network_type_converters', | |
181 ], | 180 ], |
182 }, | 181 }, |
183 { | 182 { |
184 # GN version: //mojo/public/interfaces/application:application | 183 # GN version: //mojo/public/interfaces/application:application |
185 'target_name': 'mojo_application_bindings', | 184 'target_name': 'mojo_application_bindings', |
186 'type': 'static_library', | 185 'type': 'static_library', |
187 'dependencies': [ | 186 'dependencies': [ |
188 'mojo_application_bindings_mojom', | 187 'mojo_application_bindings_mojom', |
189 'mojo_public.gyp:mojo_cpp_bindings', | 188 'mojo_public.gyp:mojo_cpp_bindings', |
190 'mojo_services.gyp:network_service_bindings_lib', | |
191 ], | |
192 'export_dependent_settings': [ | |
193 'mojo_services.gyp:network_service_bindings_lib', | |
194 ], | 189 ], |
195 }, | 190 }, |
196 { | 191 { |
197 # GN version: //mojo/test:test_support | 192 # GN version: //mojo/test:test_support |
198 'target_name': 'mojo_test_support', | 193 'target_name': 'mojo_test_support', |
199 'type': 'static_library', | 194 'type': 'static_library', |
200 'dependencies': [ | 195 'dependencies': [ |
201 '../base/base.gyp:base', | 196 '../base/base.gyp:base', |
202 ], | 197 ], |
203 'sources': [ | 198 'sources': [ |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 '../build/isolate.gypi', | 327 '../build/isolate.gypi', |
333 ], | 328 ], |
334 'sources': [ | 329 'sources': [ |
335 'mojo_common_unittests.isolate', | 330 'mojo_common_unittests.isolate', |
336 ], | 331 ], |
337 }, | 332 }, |
338 ], | 333 ], |
339 }], | 334 }], |
340 ] | 335 ] |
341 } | 336 } |
OLD | NEW |