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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 'MOJO_COMMON_IMPLEMENTATION', | 250 'MOJO_COMMON_IMPLEMENTATION', |
251 ], | 251 ], |
252 'dependencies': [ | 252 'dependencies': [ |
253 '../base/base.gyp:base', | 253 '../base/base.gyp:base', |
254 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 254 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
255 'mojo_system', | 255 'mojo_system', |
256 ], | 256 ], |
257 'sources': [ | 257 'sources': [ |
258 'common/common_type_converters.cc', | 258 'common/common_type_converters.cc', |
259 'common/common_type_converters.h', | 259 'common/common_type_converters.h', |
| 260 'common/environment_data.cc', |
| 261 'common/environment_data.h', |
260 'common/handle_watcher.cc', | 262 'common/handle_watcher.cc', |
261 'common/handle_watcher.h', | 263 'common/handle_watcher.h', |
262 'common/message_pump_mojo.cc', | 264 'common/message_pump_mojo.cc', |
263 'common/message_pump_mojo.h', | 265 'common/message_pump_mojo.h', |
264 'common/message_pump_mojo_handler.h', | 266 'common/message_pump_mojo_handler.h', |
265 'common/time_helper.cc', | 267 'common/time_helper.cc', |
266 'common/time_helper.h', | 268 'common/time_helper.h', |
267 ], | 269 ], |
268 }, | 270 }, |
269 { | 271 { |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 ], | 452 ], |
451 }, | 453 }, |
452 { | 454 { |
453 'target_name': 'mojo_service_manager_unittests', | 455 'target_name': 'mojo_service_manager_unittests', |
454 'type': 'executable', | 456 'type': 'executable', |
455 'dependencies': [ | 457 'dependencies': [ |
456 '../base/base.gyp:base', | 458 '../base/base.gyp:base', |
457 '../testing/gtest.gyp:gtest', | 459 '../testing/gtest.gyp:gtest', |
458 '../url/url.gyp:url_lib', | 460 '../url/url.gyp:url_lib', |
459 'mojo_bindings', | 461 'mojo_bindings', |
| 462 'mojo_common_lib', |
460 'mojo_environment_chromium', | 463 'mojo_environment_chromium', |
461 'mojo_run_all_unittests', | 464 'mojo_run_all_unittests', |
462 'mojo_service_manager', | 465 'mojo_service_manager', |
463 'mojo_shell_client', | 466 'mojo_shell_client', |
464 'mojo_system', | 467 'mojo_system', |
465 ], | 468 ], |
466 'variables': { | 469 'variables': { |
467 'mojom_base_output_dir': 'mojo', | 470 'mojom_base_output_dir': 'mojo', |
468 }, | 471 }, |
469 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 472 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 'mojo_js_unittests.isolate', | 609 'mojo_js_unittests.isolate', |
607 ], | 610 ], |
608 'sources': [ | 611 'sources': [ |
609 'mojo_js_unittests.isolate', | 612 'mojo_js_unittests.isolate', |
610 ], | 613 ], |
611 }, | 614 }, |
612 ], | 615 ], |
613 }], | 616 }], |
614 ], | 617 ], |
615 } | 618 } |
OLD | NEW |