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

Side by Side Diff: base/base.gyp

Issue 11412101: Provide an iOS message pump for IO implementation. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to wtc's review Created 8 years 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/mac/scoped_cffiledescriptorref.h » ('j') | no next file with comments »
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 'link_settings': { 187 'link_settings': {
188 'libraries': [ 188 'libraries': [
189 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 189 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
190 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', 190 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
191 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', 191 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
192 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 192 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
193 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', 193 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
194 ], 194 ],
195 }, 195 },
196 }], 196 }],
197 ['OS != "win"', { 197 ['OS != "win" and OS != "ios"', {
198 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], 198 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'],
199 },], 199 },],
200 ['component=="shared_library"', { 200 ['component=="shared_library"', {
201 'conditions': [ 201 'conditions': [
202 ['OS=="win"', { 202 ['OS=="win"', {
203 'sources!': [ 203 'sources!': [
204 'debug/debug_on_start_win.cc', 204 'debug/debug_on_start_win.cc',
205 ], 205 ],
206 }], 206 }],
207 ], 207 ],
(...skipping 12 matching lines...) Expand all
220 'linux_util.cc', 220 'linux_util.cc',
221 'linux_util.h', 221 'linux_util.h',
222 'md5.cc', 222 'md5.cc',
223 'md5.h', 223 'md5.h',
224 'message_pump_android.cc', 224 'message_pump_android.cc',
225 'message_pump_android.h', 225 'message_pump_android.h',
226 'message_pump_glib.cc', 226 'message_pump_glib.cc',
227 'message_pump_glib.h', 227 'message_pump_glib.h',
228 'message_pump_gtk.cc', 228 'message_pump_gtk.cc',
229 'message_pump_gtk.h', 229 'message_pump_gtk.h',
230 'message_pump_io_ios.cc',
231 'message_pump_io_ios.h',
230 'message_pump_observer.h', 232 'message_pump_observer.h',
231 'message_pump_aurax11.cc', 233 'message_pump_aurax11.cc',
232 'message_pump_aurax11.h', 234 'message_pump_aurax11.h',
233 'message_pump_libevent.cc', 235 'message_pump_libevent.cc',
234 'message_pump_libevent.h', 236 'message_pump_libevent.h',
235 'message_pump_mac.h', 237 'message_pump_mac.h',
236 'message_pump_mac.mm', 238 'message_pump_mac.mm',
237 'metrics/field_trial.cc', 239 'metrics/field_trial.cc',
238 'metrics/field_trial.h', 240 'metrics/field_trial.h',
239 'posix/file_descriptor_shuffle.cc', 241 'posix/file_descriptor_shuffle.cc',
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 'memory/scoped_ptr_unittest.cc', 476 'memory/scoped_ptr_unittest.cc',
475 'memory/scoped_ptr_unittest.nc', 477 'memory/scoped_ptr_unittest.nc',
476 'memory/scoped_vector_unittest.cc', 478 'memory/scoped_vector_unittest.cc',
477 'memory/singleton_unittest.cc', 479 'memory/singleton_unittest.cc',
478 'memory/weak_ptr_unittest.cc', 480 'memory/weak_ptr_unittest.cc',
479 'memory/weak_ptr_unittest.nc', 481 'memory/weak_ptr_unittest.nc',
480 'message_loop_proxy_impl_unittest.cc', 482 'message_loop_proxy_impl_unittest.cc',
481 'message_loop_proxy_unittest.cc', 483 'message_loop_proxy_unittest.cc',
482 'message_loop_unittest.cc', 484 'message_loop_unittest.cc',
483 'message_pump_glib_unittest.cc', 485 'message_pump_glib_unittest.cc',
486 'message_pump_io_ios_unittest.cc',
484 'message_pump_libevent_unittest.cc', 487 'message_pump_libevent_unittest.cc',
485 'metrics/sample_map_unittest.cc', 488 'metrics/sample_map_unittest.cc',
486 'metrics/sample_vector_unittest.cc', 489 'metrics/sample_vector_unittest.cc',
487 'metrics/bucket_ranges_unittest.cc', 490 'metrics/bucket_ranges_unittest.cc',
488 'metrics/field_trial_unittest.cc', 491 'metrics/field_trial_unittest.cc',
489 'metrics/histogram_unittest.cc', 492 'metrics/histogram_unittest.cc',
490 'metrics/sparse_histogram_unittest.cc', 493 'metrics/sparse_histogram_unittest.cc',
491 'metrics/stats_table_unittest.cc', 494 'metrics/stats_table_unittest.cc',
492 'metrics/statistics_recorder_unittest.cc', 495 'metrics/statistics_recorder_unittest.cc',
493 'observer_list_unittest.cc', 496 'observer_list_unittest.cc',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 'debug/stack_trace_unittest.cc', 609 'debug/stack_trace_unittest.cc',
607 ], 610 ],
608 }], 611 }],
609 ['OS == "ios"', { 612 ['OS == "ios"', {
610 'sources/': [ 613 'sources/': [
611 # Only test the iOS-meaningful portion of process_utils. 614 # Only test the iOS-meaningful portion of process_utils.
612 ['exclude', '^process_util_unittest'], 615 ['exclude', '^process_util_unittest'],
613 ['include', '^process_util_unittest_ios\\.cc$'], 616 ['include', '^process_util_unittest_ios\\.cc$'],
614 # Requires spawning processes. 617 # Requires spawning processes.
615 ['exclude', '^metrics/stats_table_unittest\\.cc$'], 618 ['exclude', '^metrics/stats_table_unittest\\.cc$'],
619 # iOS does not use message_pump_libevent.
620 ['exclude', '^message_pump_libevent_unittest\\.cc$'],
616 # TODO(ios): Remove these as base/ is unforked. 621 # TODO(ios): Remove these as base/ is unforked.
617 # For now, exclude everything that doesn't build as-is, just to 622 # For now, exclude everything that doesn't build as-is, just to get
618 # get a minimal target building. 623 # a minimal target building.
619 # Unittests that don't pass. 624 # Unittests that don't pass.
620 ['exclude', '^message_loop_unittest\\.cc$'], 625 ['exclude', '^message_loop_unittest\\.cc$'],
621 ], 626 ],
622 'conditions': [ 627 'conditions': [
623 ['coverage != 0', { 628 ['coverage != 0', {
624 'sources!': [ 629 'sources!': [
625 # These sources can't be built with coverage due to a toolchain 630 # These sources can't be built with coverage due to a toolchain
626 # bug: http://openradar.appspot.com/radar?id=1499403 631 # bug: http://openradar.appspot.com/radar?id=1499403
627 'json/json_reader_unittest.cc', 632 'json/json_reader_unittest.cc',
628 'string_piece_unittest.cc', 633 'string_piece_unittest.cc',
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 'base_unittests.isolate', 1104 'base_unittests.isolate',
1100 ], 1105 ],
1101 'sources': [ 1106 'sources': [
1102 'base_unittests.isolate', 1107 'base_unittests.isolate',
1103 ], 1108 ],
1104 }, 1109 },
1105 ], 1110 ],
1106 }], 1111 }],
1107 ], 1112 ],
1108 } 1113 }
OLDNEW
« no previous file with comments | « no previous file | base/mac/scoped_cffiledescriptorref.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698