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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 ], | 612 ], |
613 'dependencies': [ | 613 'dependencies': [ |
614 'mojo_python_bindings', | 614 'mojo_python_bindings', |
615 'mojo_python_embedder', | 615 'mojo_python_embedder', |
616 'mojo_python_system', | 616 'mojo_python_system', |
617 ], | 617 ], |
618 'includes': [ '../third_party/cython/python_module.gypi' ], | 618 'includes': [ '../third_party/cython/python_module.gypi' ], |
619 }, | 619 }, |
620 ], | 620 ], |
621 }], | 621 }], |
| 622 ['component!="shared_library" and OS=="linux" and test_isolation_mode!="noop
"', { |
| 623 'targets': [ |
| 624 { |
| 625 'target_name': 'mojo_python_unittests_run', |
| 626 'type': 'none', |
| 627 'dependencies': [ |
| 628 'mojo_python', |
| 629 'mojo_base.gyp:mojo_public_test_interfaces', |
| 630 ], |
| 631 'includes': [ |
| 632 '../build/isolate.gypi', |
| 633 'mojo_python_unittests.isolate', |
| 634 ], |
| 635 'sources': [ |
| 636 'mojo_python_unittests.isolate', |
| 637 ], |
| 638 }, |
| 639 ], |
| 640 }], |
622 ], | 641 ], |
623 } | 642 } |
OLD | NEW |