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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 # GN version: //mojo/public/python:bindings | 604 # GN version: //mojo/public/python:bindings |
605 'target_name': 'mojo_python_bindings', | 605 'target_name': 'mojo_python_bindings', |
606 'type': 'none', | 606 'type': 'none', |
607 'variables': { | 607 'variables': { |
608 'python_base_module': 'mojo/bindings', | 608 'python_base_module': 'mojo/bindings', |
609 }, | 609 }, |
610 'sources': [ | 610 'sources': [ |
611 'public/python/mojo/bindings/__init__.py', | 611 'public/python/mojo/bindings/__init__.py', |
612 'public/python/mojo/bindings/descriptor.py', | 612 'public/python/mojo/bindings/descriptor.py', |
613 'public/python/mojo/bindings/messaging.py', | 613 'public/python/mojo/bindings/messaging.py', |
| 614 'public/python/mojo/bindings/promise.py', |
614 'public/python/mojo/bindings/reflection.py', | 615 'public/python/mojo/bindings/reflection.py', |
615 'public/python/mojo/bindings/serialization.py', | 616 'public/python/mojo/bindings/serialization.py', |
616 ], | 617 ], |
617 'dependencies': [ | 618 'dependencies': [ |
618 'mojo_python_system', | 619 'mojo_python_system', |
619 ], | 620 ], |
620 'includes': [ '../third_party/cython/python_module.gypi' ], | 621 'includes': [ '../third_party/cython/python_module.gypi' ], |
621 }, | 622 }, |
622 { | 623 { |
623 # GN version: //mojo/python | 624 # GN version: //mojo/python |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 'mojo_python_unittests.isolate', | 686 'mojo_python_unittests.isolate', |
686 ], | 687 ], |
687 'sources': [ | 688 'sources': [ |
688 'mojo_python_unittests.isolate', | 689 'mojo_python_unittests.isolate', |
689 ], | 690 ], |
690 }, | 691 }, |
691 ], | 692 ], |
692 }], | 693 }], |
693 ], | 694 ], |
694 } | 695 } |
OLD | NEW |