| 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', |
| 566 'public/python/mojo/system.pyx', | 567 'public/python/mojo/system.pyx', |
| 568 'public/python/src/python_system_helper.cc', |
| 569 'public/python/src/python_system_helper.h', |
| 567 ], | 570 ], |
| 568 'dependencies': [ | 571 'dependencies': [ |
| 569 'mojo_base.gyp:mojo_system', | 572 'mojo_base.gyp:mojo_system', |
| 573 'mojo_base.gyp:mojo_utility', |
| 570 ], | 574 ], |
| 571 'includes': [ '../third_party/cython/cython_compiler.gypi' ], | 575 'includes': [ '../third_party/cython/cython_compiler.gypi' ], |
| 572 }, | 576 }, |
| 573 { | 577 { |
| 574 'target_name': 'mojo_python_embedder', | 578 'target_name': 'mojo_python_embedder', |
| 575 'type': 'loadable_module', | 579 'type': 'loadable_module', |
| 576 'variables': { | 580 'variables': { |
| 577 'python_base_module': 'mojo', | 581 'python_base_module': 'mojo', |
| 578 'python_cython_module': 'embedder', | 582 'python_cython_module': 'embedder', |
| 579 }, | 583 }, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 'mojo_python_bindings', | 618 'mojo_python_bindings', |
| 615 'mojo_python_embedder', | 619 'mojo_python_embedder', |
| 616 'mojo_python_system', | 620 'mojo_python_system', |
| 617 ], | 621 ], |
| 618 'includes': [ '../third_party/cython/python_module.gypi' ], | 622 'includes': [ '../third_party/cython/python_module.gypi' ], |
| 619 }, | 623 }, |
| 620 ], | 624 ], |
| 621 }], | 625 }], |
| 622 ], | 626 ], |
| 623 } | 627 } |
| OLD | NEW |