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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
565 ['include', '^mac/scoped_nsautorelease_pool\\.'], | 565 ['include', '^mac/scoped_nsautorelease_pool\\.'], |
566 ['include', '^message_pump_mac\\.'], | 566 ['include', '^message_pump_mac\\.'], |
567 ['include', '^native_library_mac\\.'], | 567 ['include', '^native_library_mac\\.'], |
568 ['include', '^threading/platform_thread_mac\\.'], | 568 ['include', '^threading/platform_thread_mac\\.'], |
569 ['include', '^sys_string_conversions_mac\\.'], | 569 ['include', '^sys_string_conversions_mac\\.'], |
570 ['include', '^time_mac\\.'], | 570 ['include', '^time_mac\\.'], |
571 ['include', '^worker_pool_mac\\.'], | 571 ['include', '^worker_pool_mac\\.'], |
572 # TODO(ios): Remove these as base/ is unforked. | 572 # TODO(ios): Remove these as base/ is unforked. |
573 # For now, exclude everything that doesn't build as-is, just to | 573 # For now, exclude everything that doesn't build as-is, just to |
574 # get something building on a bot. | 574 # get something building on a bot. |
575 ['exclude', '^hi_res_timer_manager'], | |
576 ['exclude', '^json'], | |
577 ['exclude', '^message_pump'], | 575 ['exclude', '^message_pump'], |
578 ['exclude', '^process_util'], | 576 ['exclude', '^process_util'], |
579 ['exclude', '^values'], | |
580 ], | 577 ], |
581 }], | 578 }], |
582 ['OS != "mac" or >(nacl_untrusted_build)==1', { | 579 ['OS != "mac" or >(nacl_untrusted_build)==1', { |
583 'sources!': [ | 580 'sources!': [ |
584 'mac/scoped_aedesc.h' | 581 'mac/scoped_aedesc.h' |
585 ], | 582 ], |
586 }], | 583 }], |
587 # For now, just test the *BSD platforms enough to exclude them. | 584 # For now, just test the *BSD platforms enough to exclude them. |
588 # Subsequent changes will include them further. | 585 # Subsequent changes will include them further. |
589 ['OS != "freebsd" or >(nacl_untrusted_build)==1', { | 586 ['OS != "freebsd" or >(nacl_untrusted_build)==1', { |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { | 642 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { |
646 'sources/': [ | 643 'sources/': [ |
647 ['exclude', '^chromeos/'], | 644 ['exclude', '^chromeos/'], |
648 ], | 645 ], |
649 }], | 646 }], |
650 ], | 647 ], |
651 }], | 648 }], |
652 ], | 649 ], |
653 }, | 650 }, |
654 } | 651 } |
OLD | NEW |