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