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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 'targets': [ | 559 'targets': [ |
560 { | 560 { |
561 # GN version: //mojo/public/python:system | 561 # GN version: //mojo/public/python:system |
562 'target_name': 'mojo_python_system', | 562 'target_name': 'mojo_python_system', |
563 'variables': { | 563 'variables': { |
564 'python_base_module': 'mojo', | 564 'python_base_module': 'mojo', |
565 'python_cython_module': 'system', | 565 'python_cython_module': 'system', |
566 }, | 566 }, |
567 'sources': [ | 567 'sources': [ |
568 'public/python/mojo/c_core.pxd', | 568 'public/python/mojo/c_core.pxd', |
| 569 'public/python/mojo/c_environment.pxd', |
569 'public/python/mojo/system.pyx', | 570 'public/python/mojo/system.pyx', |
| 571 'public/python/src/python_system_helper.cc', |
| 572 'public/python/src/python_system_helper.h', |
570 ], | 573 ], |
571 'dependencies': [ | 574 'dependencies': [ |
| 575 'mojo_base.gyp:mojo_environment_standalone', |
572 'mojo_base.gyp:mojo_system', | 576 'mojo_base.gyp:mojo_system', |
| 577 'mojo_base.gyp:mojo_utility', |
573 ], | 578 ], |
574 'includes': [ '../third_party/cython/cython_compiler.gypi' ], | 579 'includes': [ '../third_party/cython/cython_compiler.gypi' ], |
575 }, | 580 }, |
576 { | 581 { |
577 # GN version: //mojo/python:embedder | 582 # GN version: //mojo/python:embedder |
578 'target_name': 'mojo_python_embedder', | 583 'target_name': 'mojo_python_embedder', |
579 'type': 'loadable_module', | 584 'type': 'loadable_module', |
580 'variables': { | 585 'variables': { |
581 'python_base_module': 'mojo', | 586 'python_base_module': 'mojo', |
582 'python_cython_module': 'embedder', | 587 'python_cython_module': 'embedder', |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 'mojo_python_unittests.isolate', | 678 'mojo_python_unittests.isolate', |
674 ], | 679 ], |
675 'sources': [ | 680 'sources': [ |
676 'mojo_python_unittests.isolate', | 681 'mojo_python_unittests.isolate', |
677 ], | 682 ], |
678 }, | 683 }, |
679 ], | 684 ], |
680 }], | 685 }], |
681 ], | 686 ], |
682 } | 687 } |
OLD | NEW |