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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 'dependencies': [ | 263 'dependencies': [ |
264 '../base/base.gyp:base', | 264 '../base/base.gyp:base', |
265 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 265 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
266 'mojo_system_impl', | 266 'mojo_system_impl', |
267 ], | 267 ], |
268 'export_dependent_settings': [ | 268 'export_dependent_settings': [ |
269 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 269 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
270 'mojo_system_impl', | 270 'mojo_system_impl', |
271 ], | 271 ], |
272 'sources': [ | 272 'sources': [ |
| 273 'common/channel_init.cc', |
| 274 'common/channel_init.h', |
273 'common/common_type_converters.cc', | 275 'common/common_type_converters.cc', |
274 'common/common_type_converters.h', | 276 'common/common_type_converters.h', |
275 'common/environment_data.cc', | 277 'common/environment_data.cc', |
276 'common/environment_data.h', | 278 'common/environment_data.h', |
277 'common/handle_watcher.cc', | 279 'common/handle_watcher.cc', |
278 'common/handle_watcher.h', | 280 'common/handle_watcher.h', |
279 'common/message_pump_mojo.cc', | 281 'common/message_pump_mojo.cc', |
280 'common/message_pump_mojo.h', | 282 'common/message_pump_mojo.h', |
281 'common/message_pump_mojo_handler.h', | 283 'common/message_pump_mojo_handler.h', |
282 'common/mojo_channel_init.cc', | |
283 'common/mojo_channel_init.h', | |
284 'common/time_helper.cc', | 284 'common/time_helper.cc', |
285 'common/time_helper.h', | 285 'common/time_helper.h', |
286 ], | 286 ], |
287 }, | 287 }, |
288 { | 288 { |
289 'target_name': 'mojo_common_test_support', | 289 'target_name': 'mojo_common_test_support', |
290 'type': 'static_library', | 290 'type': 'static_library', |
291 'dependencies': [ | 291 'dependencies': [ |
292 '../base/base.gyp:base', | 292 '../base/base.gyp:base', |
293 '../base/base.gyp:test_support_base', | 293 '../base/base.gyp:test_support_base', |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 'mojo_js_unittests.isolate', | 653 'mojo_js_unittests.isolate', |
654 ], | 654 ], |
655 'sources': [ | 655 'sources': [ |
656 'mojo_js_unittests.isolate', | 656 'mojo_js_unittests.isolate', |
657 ], | 657 ], |
658 }, | 658 }, |
659 ], | 659 ], |
660 }], | 660 }], |
661 ], | 661 ], |
662 } | 662 } |
OLD | NEW |