| 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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 ['component!="shared_library" and OS=="linux"', { | 556 ['component!="shared_library" and OS=="linux"', { |
| 557 'targets': [ | 557 'targets': [ |
| 558 { | 558 { |
| 559 'target_name': 'mojo_python_system', | 559 'target_name': 'mojo_python_system', |
| 560 'variables': { | 560 'variables': { |
| 561 'python_base_module': 'mojo', | 561 'python_base_module': 'mojo', |
| 562 'python_cython_module': 'system', | 562 'python_cython_module': 'system', |
| 563 }, | 563 }, |
| 564 'sources': [ | 564 'sources': [ |
| 565 'public/python/mojo/c_core.pxd', | 565 'public/python/mojo/c_core.pxd', |
| 566 'public/python/mojo/c_environment.pxd', | |
| 567 'public/python/mojo/system.pyx', | 566 'public/python/mojo/system.pyx', |
| 568 'public/python/src/python_system_helper.cc', | |
| 569 'public/python/src/python_system_helper.h', | |
| 570 ], | 567 ], |
| 571 'dependencies': [ | 568 'dependencies': [ |
| 572 'mojo_base.gyp:mojo_environment_standalone', | |
| 573 'mojo_base.gyp:mojo_system', | 569 'mojo_base.gyp:mojo_system', |
| 574 'mojo_base.gyp:mojo_utility', | |
| 575 ], | 570 ], |
| 576 'includes': [ '../third_party/cython/cython_compiler.gypi' ], | 571 'includes': [ '../third_party/cython/cython_compiler.gypi' ], |
| 577 }, | 572 }, |
| 578 { | 573 { |
| 579 'target_name': 'mojo_python_embedder', | 574 'target_name': 'mojo_python_embedder', |
| 580 'type': 'loadable_module', | 575 'type': 'loadable_module', |
| 581 'variables': { | 576 'variables': { |
| 582 'python_base_module': 'mojo', | 577 'python_base_module': 'mojo', |
| 583 'python_cython_module': 'embedder', | 578 'python_cython_module': 'embedder', |
| 584 }, | 579 }, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 'mojo_python_bindings', | 614 'mojo_python_bindings', |
| 620 'mojo_python_embedder', | 615 'mojo_python_embedder', |
| 621 'mojo_python_system', | 616 'mojo_python_system', |
| 622 ], | 617 ], |
| 623 'includes': [ '../third_party/cython/python_module.gypi' ], | 618 'includes': [ '../third_party/cython/python_module.gypi' ], |
| 624 }, | 619 }, |
| 625 ], | 620 ], |
| 626 }], | 621 }], |
| 627 ], | 622 ], |
| 628 } | 623 } |
| OLD | NEW |