Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(722)

Side by Side Diff: mojo/mojo.gyp

Issue 552783004: mojo: Add a runloop utility in python (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Do not acquire GIL when called from python. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | mojo/public/python/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/python/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698