OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 7 'variables': { |
8 'base_target': 0, | 8 'base_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
684 ['include', '^worker_pool_mac\\.'], | 684 ['include', '^worker_pool_mac\\.'], |
685 # Exclude all process_util except the minimal implementation | 685 # Exclude all process_util except the minimal implementation |
686 # needed on iOS (mostly for unit tests). | 686 # needed on iOS (mostly for unit tests). |
687 ['exclude', '^process_util'], | 687 ['exclude', '^process_util'], |
688 ['include', '^process_util_ios\\.mm$'], | 688 ['include', '^process_util_ios\\.mm$'], |
689 ], | 689 ], |
690 'sources!': [ | 690 'sources!': [ |
691 'message_pump_libevent.cc' | 691 'message_pump_libevent.cc' |
692 ], | 692 ], |
693 }], | 693 }], |
694 ['OS == "ios" and _toolset == "host"', { | |
695 'sources/': [ | |
696 ['include', '^process_util_mac\\.mm$'], | |
697 ['include', '^process_util_posix\\.cc'], | |
698 ['include', '^process_util\\.cc'], | |
699 ['include', 'mac'], | |
700 ['exclude', 'ios'], | |
stuartmorgan
2013/05/06 11:56:35
These two rules seem really dangerous. Seems like
justincohen
2013/05/06 14:17:36
Done.
| |
701 ] | |
702 }], | |
694 ['OS != "mac" or >(nacl_untrusted_build)==1', { | 703 ['OS != "mac" or >(nacl_untrusted_build)==1', { |
695 'sources!': [ | 704 'sources!': [ |
696 'mac/scoped_aedesc.h' | 705 'mac/scoped_aedesc.h' |
697 ], | 706 ], |
698 }], | 707 }], |
699 # For now, just test the *BSD platforms enough to exclude them. | 708 # For now, just test the *BSD platforms enough to exclude them. |
700 # Subsequent changes will include them further. | 709 # Subsequent changes will include them further. |
701 ['OS != "freebsd" or >(nacl_untrusted_build)==1', { | 710 ['OS != "freebsd" or >(nacl_untrusted_build)==1', { |
702 'sources/': [ ['exclude', '_freebsd\\.cc$'] ], | 711 'sources/': [ ['exclude', '_freebsd\\.cc$'] ], |
703 }, | 712 }, |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
777 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { | 786 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { |
778 'sources/': [ | 787 'sources/': [ |
779 ['exclude', '^third_party/nspr/'], | 788 ['exclude', '^third_party/nspr/'], |
780 ], | 789 ], |
781 }], | 790 }], |
782 ], | 791 ], |
783 }], | 792 }], |
784 ], | 793 ], |
785 }, | 794 }, |
786 } | 795 } |
OLD | NEW |