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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 'includes': [ '../third_party/cython/cython_compiler.gypi' ], | 583 'includes': [ '../third_party/cython/cython_compiler.gypi' ], |
584 }, | 584 }, |
585 { | 585 { |
586 'target_name': 'mojo_python_bindings', | 586 'target_name': 'mojo_python_bindings', |
587 'type': 'none', | 587 'type': 'none', |
588 'variables': { | 588 'variables': { |
589 'python_base_module': 'mojo/bindings', | 589 'python_base_module': 'mojo/bindings', |
590 }, | 590 }, |
591 'sources': [ | 591 'sources': [ |
592 'public/python/mojo/bindings/__init__.py', | 592 'public/python/mojo/bindings/__init__.py', |
| 593 'public/python/mojo/bindings/descriptor.py', |
593 'public/python/mojo/bindings/reflection.py', | 594 'public/python/mojo/bindings/reflection.py', |
594 ], | 595 ], |
595 'dependencies': [ | 596 'dependencies': [ |
596 'mojo_python_system', | 597 'mojo_python_system', |
597 ], | 598 ], |
598 'includes': [ '../third_party/cython/python_module.gypi' ], | 599 'includes': [ '../third_party/cython/python_module.gypi' ], |
599 }, | 600 }, |
600 { | 601 { |
601 'target_name': 'mojo_python', | 602 'target_name': 'mojo_python', |
602 'type': 'none', | 603 'type': 'none', |
603 'variables': { | 604 'variables': { |
604 'python_base_module': 'mojo', | 605 'python_base_module': 'mojo', |
605 }, | 606 }, |
606 'sources': [ | 607 'sources': [ |
607 'public/python/mojo/__init__.py', | 608 'public/python/mojo/__init__.py', |
608 ], | 609 ], |
609 'dependencies': [ | 610 'dependencies': [ |
610 'mojo_python_bindings', | 611 'mojo_python_bindings', |
611 'mojo_python_embedder', | 612 'mojo_python_embedder', |
612 'mojo_python_system', | 613 'mojo_python_system', |
613 ], | 614 ], |
614 'includes': [ '../third_party/cython/python_module.gypi' ], | 615 'includes': [ '../third_party/cython/python_module.gypi' ], |
615 }, | 616 }, |
616 ], | 617 ], |
617 }], | 618 }], |
618 ], | 619 ], |
619 } | 620 } |
OLD | NEW |