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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 'mac/mac_util.mm', | 209 'mac/mac_util.mm', |
210 'mac/objc_property_releaser.h', | 210 'mac/objc_property_releaser.h', |
211 'mac/objc_property_releaser.mm', | 211 'mac/objc_property_releaser.mm', |
212 'mac/os_crash_dumps.cc', | 212 'mac/os_crash_dumps.cc', |
213 'mac/os_crash_dumps.h', | 213 'mac/os_crash_dumps.h', |
214 'mac/scoped_aedesc.h', | 214 'mac/scoped_aedesc.h', |
215 'mac/scoped_authorizationref.h', | 215 'mac/scoped_authorizationref.h', |
216 'mac/scoped_cftyperef.h', | 216 'mac/scoped_cftyperef.h', |
217 'mac/scoped_ioobject.h', | 217 'mac/scoped_ioobject.h', |
218 'mac/scoped_launch_data.h', | 218 'mac/scoped_launch_data.h', |
| 219 'mac/scoped_mach_port.cc', |
| 220 'mac/scoped_mach_port.h', |
219 'mac/scoped_nsautorelease_pool.h', | 221 'mac/scoped_nsautorelease_pool.h', |
220 'mac/scoped_nsautorelease_pool.mm', | 222 'mac/scoped_nsautorelease_pool.mm', |
221 'mac/scoped_nsexception_enabler.h', | 223 'mac/scoped_nsexception_enabler.h', |
222 'mac/scoped_nsexception_enabler.mm', | 224 'mac/scoped_nsexception_enabler.mm', |
223 'mac/scoped_sending_event.h', | 225 'mac/scoped_sending_event.h', |
224 'mac/scoped_sending_event.mm', | 226 'mac/scoped_sending_event.mm', |
225 'mach_ipc_mac.h', | 227 'mach_ipc_mac.h', |
226 'mach_ipc_mac.mm', | 228 'mach_ipc_mac.mm', |
227 'memory/aligned_memory.cc', | 229 'memory/aligned_memory.cc', |
228 'memory/aligned_memory.h', | 230 'memory/aligned_memory.h', |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
613 # by file name rules). | 615 # by file name rules). |
614 ['include', '^atomicops_internals_mac\\.'], | 616 ['include', '^atomicops_internals_mac\\.'], |
615 ['include', '^base_paths_mac\\.'], | 617 ['include', '^base_paths_mac\\.'], |
616 ['include', '^file_util_mac\\.'], | 618 ['include', '^file_util_mac\\.'], |
617 ['include', '^file_version_info_mac\\.'], | 619 ['include', '^file_version_info_mac\\.'], |
618 ['include', '^mac/bind_objc_block\\.'], | 620 ['include', '^mac/bind_objc_block\\.'], |
619 ['include', '^mac/bundle_locations\\.'], | 621 ['include', '^mac/bundle_locations\\.'], |
620 ['include', '^mac/foundation_util\\.'], | 622 ['include', '^mac/foundation_util\\.'], |
621 ['include', '^mac/mac_logging\\.'], | 623 ['include', '^mac/mac_logging\\.'], |
622 ['include', '^mac/objc_property_releaser\\.'], | 624 ['include', '^mac/objc_property_releaser\\.'], |
| 625 ['include', '^mac/scoped_mach_port\\.'], |
623 ['include', '^mac/scoped_nsautorelease_pool\\.'], | 626 ['include', '^mac/scoped_nsautorelease_pool\\.'], |
624 ['include', '^message_pump_mac\\.'], | 627 ['include', '^message_pump_mac\\.'], |
625 ['include', '^threading/platform_thread_mac\\.'], | 628 ['include', '^threading/platform_thread_mac\\.'], |
626 ['include', '^sys_string_conversions_mac\\.'], | 629 ['include', '^sys_string_conversions_mac\\.'], |
627 ['include', '^time_mac\\.'], | 630 ['include', '^time_mac\\.'], |
628 ['include', '^worker_pool_mac\\.'], | 631 ['include', '^worker_pool_mac\\.'], |
629 # Exclude all process_util except the minimal implementation | 632 # Exclude all process_util except the minimal implementation |
630 # needed on iOS (mostly for unit tests). | 633 # needed on iOS (mostly for unit tests). |
631 ['exclude', '^process_util'], | 634 ['exclude', '^process_util'], |
632 ['include', '^process_util_ios\\.mm$'], | 635 ['include', '^process_util_ios\\.mm$'], |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 # Remove all unnecessary files for build_nexe.py to avoid exceeding | 706 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
704 # command-line-string limitation when building NaCl on Windows. | 707 # command-line-string limitation when building NaCl on Windows. |
705 ['OS == "win" and >(nacl_untrusted_build)==1', { | 708 ['OS == "win" and >(nacl_untrusted_build)==1', { |
706 'sources/': [ ['exclude', '\\.h$'] ], | 709 'sources/': [ ['exclude', '\\.h$'] ], |
707 }], | 710 }], |
708 ], | 711 ], |
709 }], | 712 }], |
710 ], | 713 ], |
711 }, | 714 }, |
712 } | 715 } |
OLD | NEW |