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 'target_defaults': { | 6 'target_defaults': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
9 'defines': [ | 9 'defines': [ |
10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 'dependencies': [ | 273 'dependencies': [ |
274 '../base/base.gyp:base', | 274 '../base/base.gyp:base', |
275 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 275 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
276 'mojo_system_impl', | 276 'mojo_system_impl', |
277 ], | 277 ], |
278 'export_dependent_settings': [ | 278 'export_dependent_settings': [ |
279 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 279 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
280 'mojo_system_impl', | 280 'mojo_system_impl', |
281 ], | 281 ], |
282 'sources': [ | 282 'sources': [ |
| 283 'common/channel_init.cc', |
| 284 'common/channel_init.h', |
283 'common/common_type_converters.cc', | 285 'common/common_type_converters.cc', |
284 'common/common_type_converters.h', | 286 'common/common_type_converters.h', |
285 'common/environment_data.cc', | 287 'common/environment_data.cc', |
286 'common/environment_data.h', | 288 'common/environment_data.h', |
287 'common/handle_watcher.cc', | 289 'common/handle_watcher.cc', |
288 'common/handle_watcher.h', | 290 'common/handle_watcher.h', |
289 'common/message_pump_mojo.cc', | 291 'common/message_pump_mojo.cc', |
290 'common/message_pump_mojo.h', | 292 'common/message_pump_mojo.h', |
291 'common/message_pump_mojo_handler.h', | 293 'common/message_pump_mojo_handler.h', |
292 'common/mojo_channel_init.cc', | |
293 'common/mojo_channel_init.h', | |
294 'common/time_helper.cc', | 294 'common/time_helper.cc', |
295 'common/time_helper.h', | 295 'common/time_helper.h', |
296 ], | 296 ], |
297 }, | 297 }, |
298 { | 298 { |
299 'target_name': 'mojo_common_test_support', | 299 'target_name': 'mojo_common_test_support', |
300 'type': 'static_library', | 300 'type': 'static_library', |
301 'dependencies': [ | 301 'dependencies': [ |
302 '../base/base.gyp:base', | 302 '../base/base.gyp:base', |
303 '../base/base.gyp:test_support_base', | 303 '../base/base.gyp:test_support_base', |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 'mojo_js_unittests.isolate', | 724 'mojo_js_unittests.isolate', |
725 ], | 725 ], |
726 'sources': [ | 726 'sources': [ |
727 'mojo_js_unittests.isolate', | 727 'mojo_js_unittests.isolate', |
728 ], | 728 ], |
729 }, | 729 }, |
730 ], | 730 ], |
731 }], | 731 }], |
732 ], | 732 ], |
733 } | 733 } |
OLD | NEW |