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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 { | 573 { |
574 # GN version: //mojo/public/python:bindings | 574 # GN version: //mojo/public/python:bindings |
575 'target_name': 'mojo_python_bindings', | 575 'target_name': 'mojo_python_bindings', |
576 'type': 'none', | 576 'type': 'none', |
577 'variables': { | 577 'variables': { |
578 'python_base_module': 'mojo/bindings', | 578 'python_base_module': 'mojo/bindings', |
579 }, | 579 }, |
580 'sources': [ | 580 'sources': [ |
581 'public/python/mojo/bindings/__init__.py', | 581 'public/python/mojo/bindings/__init__.py', |
582 'public/python/mojo/bindings/descriptor.py', | 582 'public/python/mojo/bindings/descriptor.py', |
| 583 'public/python/mojo/bindings/messaging.py', |
583 'public/python/mojo/bindings/reflection.py', | 584 'public/python/mojo/bindings/reflection.py', |
584 'public/python/mojo/bindings/serialization.py', | 585 'public/python/mojo/bindings/serialization.py', |
585 ], | 586 ], |
586 'dependencies': [ | 587 'dependencies': [ |
587 'mojo_python_system', | 588 'mojo_python_system', |
588 ], | 589 ], |
589 'includes': [ '../third_party/cython/python_module.gypi' ], | 590 'includes': [ '../third_party/cython/python_module.gypi' ], |
590 }, | 591 }, |
591 { | 592 { |
592 # GN version: //mojo/python | 593 # GN version: //mojo/python |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 'mojo_python_unittests.isolate', | 655 'mojo_python_unittests.isolate', |
655 ], | 656 ], |
656 'sources': [ | 657 'sources': [ |
657 'mojo_python_unittests.isolate', | 658 'mojo_python_unittests.isolate', |
658 ], | 659 ], |
659 }, | 660 }, |
660 ], | 661 ], |
661 }], | 662 }], |
662 ], | 663 ], |
663 } | 664 } |
OLD | NEW |