Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: base/base.gypi

Issue 10835032: Add APIs to protect critical tasks on iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address review comments Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/critical_closure.h » ('j') | base/critical_closure.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 'callback_internal.cc', 79 'callback_internal.cc',
80 'callback_internal.h', 80 'callback_internal.h',
81 'cancelable_callback.h', 81 'cancelable_callback.h',
82 'chromeos/chromeos_version.cc', 82 'chromeos/chromeos_version.cc',
83 'chromeos/chromeos_version.h', 83 'chromeos/chromeos_version.h',
84 'command_line.cc', 84 'command_line.cc',
85 'command_line.h', 85 'command_line.h',
86 'compiler_specific.h', 86 'compiler_specific.h',
87 'cpu.cc', 87 'cpu.cc',
88 'cpu.h', 88 'cpu.h',
89 'critical_closure.h',
90 'critical_closure_ios.mm',
91 'critical_closure_stub.cc',
89 'debug/alias.cc', 92 'debug/alias.cc',
90 'debug/alias.h', 93 'debug/alias.h',
91 'debug/debug_on_start_win.cc', 94 'debug/debug_on_start_win.cc',
92 'debug/debug_on_start_win.h', 95 'debug/debug_on_start_win.h',
93 'debug/debugger.cc', 96 'debug/debugger.cc',
94 'debug/debugger.h', 97 'debug/debugger.h',
95 'debug/debugger_posix.cc', 98 'debug/debugger_posix.cc',
96 'debug/debugger_win.cc', 99 'debug/debugger_win.cc',
97 'debug/leak_annotations.h', 100 'debug/leak_annotations.h',
98 'debug/leak_tracker.h', 101 'debug/leak_tracker.h',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 'gtest_prod_util.h', 147 'gtest_prod_util.h',
145 'guid.cc', 148 'guid.cc',
146 'guid.h', 149 'guid.h',
147 'guid_posix.cc', 150 'guid_posix.cc',
148 'guid_win.cc', 151 'guid_win.cc',
149 'hash_tables.h', 152 'hash_tables.h',
150 'hi_res_timer_manager_posix.cc', 153 'hi_res_timer_manager_posix.cc',
151 'hi_res_timer_manager_win.cc', 154 'hi_res_timer_manager_win.cc',
152 'hi_res_timer_manager.h', 155 'hi_res_timer_manager.h',
153 'id_map.h', 156 'id_map.h',
157 'ios/scoped_critical_action.h',
158 'ios/scoped_critical_action.mm',
154 'json/json_file_value_serializer.cc', 159 'json/json_file_value_serializer.cc',
155 'json/json_file_value_serializer.h', 160 'json/json_file_value_serializer.h',
156 'json/json_parser.cc', 161 'json/json_parser.cc',
157 'json/json_parser.h', 162 'json/json_parser.h',
158 'json/json_reader.cc', 163 'json/json_reader.cc',
159 'json/json_reader.h', 164 'json/json_reader.h',
160 'json/json_string_value_serializer.cc', 165 'json/json_string_value_serializer.cc',
161 'json/json_string_value_serializer.h', 166 'json/json_string_value_serializer.h',
162 'json/json_value_converter.h', 167 'json/json_value_converter.h',
163 'json/json_writer.cc', 168 'json/json_writer.cc',
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 ['include', '^mac/scoped_nsautorelease_pool\\.'], 595 ['include', '^mac/scoped_nsautorelease_pool\\.'],
591 ['include', '^message_pump_mac\\.'], 596 ['include', '^message_pump_mac\\.'],
592 ['include', '^threading/platform_thread_mac\\.'], 597 ['include', '^threading/platform_thread_mac\\.'],
593 ['include', '^sys_string_conversions_mac\\.'], 598 ['include', '^sys_string_conversions_mac\\.'],
594 ['include', '^time_mac\\.'], 599 ['include', '^time_mac\\.'],
595 ['include', '^worker_pool_mac\\.'], 600 ['include', '^worker_pool_mac\\.'],
596 # Exclude all process_util except the minimal implementation 601 # Exclude all process_util except the minimal implementation
597 # needed on iOS (mostly for unit tests). 602 # needed on iOS (mostly for unit tests).
598 ['exclude', '^process_util'], 603 ['exclude', '^process_util'],
599 ['include', '^process_util_ios\\.mm$'], 604 ['include', '^process_util_ios\\.mm$'],
605 # Exclude the stub implementation for critical closure on iOS.
606 # 'critical_closure_ios.mm' will be used for iOS.
607 ['exclude', '^critical_closure_stub\\.cc$'],
600 ], 608 ],
601 }], 609 }],
602 ['OS != "mac" or >(nacl_untrusted_build)==1', { 610 ['OS != "mac" or >(nacl_untrusted_build)==1', {
603 'sources!': [ 611 'sources!': [
604 'mac/scoped_aedesc.h' 612 'mac/scoped_aedesc.h'
605 ], 613 ],
606 }], 614 }],
607 # For now, just test the *BSD platforms enough to exclude them. 615 # For now, just test the *BSD platforms enough to exclude them.
608 # Subsequent changes will include them further. 616 # Subsequent changes will include them further.
609 ['OS != "freebsd" or >(nacl_untrusted_build)==1', { 617 ['OS != "freebsd" or >(nacl_untrusted_build)==1', {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 # Remove all unnecessary files for build_nexe.py to avoid exceeding 678 # Remove all unnecessary files for build_nexe.py to avoid exceeding
671 # command-line-string limitation when building NaCl on Windows. 679 # command-line-string limitation when building NaCl on Windows.
672 ['OS == "win" and >(nacl_untrusted_build)==1', { 680 ['OS == "win" and >(nacl_untrusted_build)==1', {
673 'sources/': [ ['exclude', '\\.h$'] ], 681 'sources/': [ ['exclude', '\\.h$'] ],
674 }], 682 }],
675 ], 683 ],
676 }], 684 }],
677 ], 685 ],
678 }, 686 },
679 } 687 }
OLDNEW
« no previous file with comments | « no previous file | base/critical_closure.h » ('j') | base/critical_closure.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698