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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'lazy_instance.h', | 166 'lazy_instance.h', |
167 'linked_list.h', | 167 'linked_list.h', |
168 'location.cc', | 168 'location.cc', |
169 'location.h', | 169 'location.h', |
170 'logging.cc', | 170 'logging.cc', |
171 'logging.h', | 171 'logging.h', |
172 'logging_win.cc', | 172 'logging_win.cc', |
173 'logging_win.h', | 173 'logging_win.h', |
174 'mac/authorization_util.h', | 174 'mac/authorization_util.h', |
175 'mac/authorization_util.mm', | 175 'mac/authorization_util.mm', |
| 176 'mac/bind_objc_block.h', |
| 177 'mac/bind_objc_block.mm', |
176 'mac/bundle_locations.h', | 178 'mac/bundle_locations.h', |
177 'mac/bundle_locations.mm', | 179 'mac/bundle_locations.mm', |
178 'mac/cocoa_protocols.h', | 180 'mac/cocoa_protocols.h', |
179 'mac/crash_logging.h', | 181 'mac/crash_logging.h', |
180 'mac/crash_logging.mm', | 182 'mac/crash_logging.mm', |
181 'mac/foundation_util.h', | 183 'mac/foundation_util.h', |
182 'mac/foundation_util.mm', | 184 'mac/foundation_util.mm', |
183 'mac/launchd.cc', | 185 'mac/launchd.cc', |
184 'mac/launchd.h', | 186 'mac/launchd.h', |
185 'mac/mac_logging.h', | 187 'mac/mac_logging.h', |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 ], | 566 ], |
565 }], | 567 }], |
566 ['OS == "ios"', { | 568 ['OS == "ios"', { |
567 'sources/': [ | 569 'sources/': [ |
568 # Pull in specific Mac files for iOS (which have been filtered out | 570 # Pull in specific Mac files for iOS (which have been filtered out |
569 # by file name rules). | 571 # by file name rules). |
570 ['include', '^atomicops_internals_mac\\.'], | 572 ['include', '^atomicops_internals_mac\\.'], |
571 ['include', '^base_paths_mac\\.'], | 573 ['include', '^base_paths_mac\\.'], |
572 ['include', '^file_util_mac\\.'], | 574 ['include', '^file_util_mac\\.'], |
573 ['include', '^file_version_info_mac\\.'], | 575 ['include', '^file_version_info_mac\\.'], |
| 576 ['include', '^mac/bind_objc_block\\.'], |
574 ['include', '^mac/bundle_locations\\.'], | 577 ['include', '^mac/bundle_locations\\.'], |
575 ['include', '^mac/foundation_util\\.'], | 578 ['include', '^mac/foundation_util\\.'], |
576 ['include', '^mac/mac_logging\\.'], | 579 ['include', '^mac/mac_logging\\.'], |
577 ['include', '^mac/objc_property_releaser\\.'], | 580 ['include', '^mac/objc_property_releaser\\.'], |
578 ['include', '^mac/scoped_nsautorelease_pool\\.'], | 581 ['include', '^mac/scoped_nsautorelease_pool\\.'], |
579 ['include', '^message_pump_mac\\.'], | 582 ['include', '^message_pump_mac\\.'], |
580 ['include', '^threading/platform_thread_mac\\.'], | 583 ['include', '^threading/platform_thread_mac\\.'], |
581 ['include', '^sys_string_conversions_mac\\.'], | 584 ['include', '^sys_string_conversions_mac\\.'], |
582 ['include', '^time_mac\\.'], | 585 ['include', '^time_mac\\.'], |
583 ['include', '^worker_pool_mac\\.'], | 586 ['include', '^worker_pool_mac\\.'], |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 661 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
659 # command-line-string limitation when building NaCl on Windows. | 662 # command-line-string limitation when building NaCl on Windows. |
660 ['OS == "win" and >(nacl_untrusted_build)==1', { | 663 ['OS == "win" and >(nacl_untrusted_build)==1', { |
661 'sources/': [ ['exclude', '\\.h$'] ], | 664 'sources/': [ ['exclude', '\\.h$'] ], |
662 }], | 665 }], |
663 ], | 666 ], |
664 }], | 667 }], |
665 ], | 668 ], |
666 }, | 669 }, |
667 } | 670 } |
OLD | NEW |