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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
554 ], | 554 ], |
555 }], | 555 }], |
556 ['OS == "ios"', { | 556 ['OS == "ios"', { |
557 'sources/': [ | 557 'sources/': [ |
558 # Pull in specific Mac files for iOS (which have been filtered out | 558 # Pull in specific Mac files for iOS (which have been filtered out |
559 # by file name rules). | 559 # by file name rules). |
560 ['include', '^base_paths_mac\\.'], | 560 ['include', '^base_paths_mac\\.'], |
561 ['include', '^file_util_mac\\.'], | 561 ['include', '^file_util_mac\\.'], |
562 ['include', '^file_version_info_mac\\.'], | 562 ['include', '^file_version_info_mac\\.'], |
563 ['include', '^mac/bundle_locations\\.'], | 563 ['include', '^mac/bundle_locations\\.'], |
| 564 ['include', '^mac/foundation_util\\.'], |
| 565 ['include', '^mac/mac_logging\\.'], |
564 ['include', '^mac/objc_property_releaser\\.'], | 566 ['include', '^mac/objc_property_releaser\\.'], |
565 ['include', '^mac/scoped_nsautorelease_pool\\.'], | 567 ['include', '^mac/scoped_nsautorelease_pool\\.'], |
566 ['include', '^message_pump_mac\\.'], | 568 ['include', '^message_pump_mac\\.'], |
567 ['include', '^native_library_mac\\.'], | 569 ['include', '^native_library_mac\\.'], |
568 ['include', '^threading/platform_thread_mac\\.'], | 570 ['include', '^threading/platform_thread_mac\\.'], |
569 ['include', '^sys_string_conversions_mac\\.'], | 571 ['include', '^sys_string_conversions_mac\\.'], |
570 ['include', '^time_mac\\.'], | 572 ['include', '^time_mac\\.'], |
571 ['include', '^worker_pool_mac\\.'], | 573 ['include', '^worker_pool_mac\\.'], |
572 # TODO(ios): Remove these as base/ is unforked. | 574 # TODO(ios): Remove these as base/ is unforked. |
573 # For now, exclude everything that doesn't build as-is, just to | 575 # For now, exclude everything that doesn't build as-is, just to |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { | 644 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { |
643 'sources/': [ | 645 'sources/': [ |
644 ['exclude', '^chromeos/'], | 646 ['exclude', '^chromeos/'], |
645 ], | 647 ], |
646 }], | 648 }], |
647 ], | 649 ], |
648 }], | 650 }], |
649 ], | 651 ], |
650 }, | 652 }, |
651 } | 653 } |
OLD | NEW |