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