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

Side by Side Diff: base/base.gypi

Issue 10703120: Adds an iOS implementation of base::SystemMonitor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Review2 Created 8 years, 5 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/system_monitor/system_monitor.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 '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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 'synchronization/spin_wait.h', 341 'synchronization/spin_wait.h',
342 'synchronization/waitable_event.h', 342 'synchronization/waitable_event.h',
343 'synchronization/waitable_event_posix.cc', 343 'synchronization/waitable_event_posix.cc',
344 'synchronization/waitable_event_watcher.h', 344 'synchronization/waitable_event_watcher.h',
345 'synchronization/waitable_event_watcher_posix.cc', 345 'synchronization/waitable_event_watcher_posix.cc',
346 'synchronization/waitable_event_watcher_win.cc', 346 'synchronization/waitable_event_watcher_win.cc',
347 'synchronization/waitable_event_win.cc', 347 'synchronization/waitable_event_win.cc',
348 'system_monitor/system_monitor.cc', 348 'system_monitor/system_monitor.cc',
349 'system_monitor/system_monitor.h', 349 'system_monitor/system_monitor.h',
350 'system_monitor/system_monitor_android.cc', 350 'system_monitor/system_monitor_android.cc',
351 'system_monitor/system_monitor_ios.mm',
351 'system_monitor/system_monitor_mac.mm', 352 'system_monitor/system_monitor_mac.mm',
352 'system_monitor/system_monitor_posix.cc', 353 'system_monitor/system_monitor_posix.cc',
353 'system_monitor/system_monitor_win.cc', 354 'system_monitor/system_monitor_win.cc',
354 'sys_byteorder.h', 355 'sys_byteorder.h',
355 'sys_info.h', 356 'sys_info.h',
356 'sys_info_android.cc', 357 'sys_info_android.cc',
357 'sys_info_chromeos.cc', 358 'sys_info_chromeos.cc',
358 'sys_info_freebsd.cc', 359 'sys_info_freebsd.cc',
359 'sys_info_linux.cc', 360 'sys_info_linux.cc',
360 'sys_info_mac.cc', 361 'sys_info_mac.cc',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 ['include', '^sys_string_conversions_mac\\.'], 567 ['include', '^sys_string_conversions_mac\\.'],
567 ['include', '^time_mac\\.'], 568 ['include', '^time_mac\\.'],
568 ['include', '^worker_pool_mac\\.'], 569 ['include', '^worker_pool_mac\\.'],
569 # TODO(ios): Remove these as base/ is unforked. 570 # TODO(ios): Remove these as base/ is unforked.
570 # For now, exclude everything that doesn't build as-is, just to 571 # For now, exclude everything that doesn't build as-is, just to
571 # get something building on a bot. 572 # get something building on a bot.
572 ['exclude', '^hi_res_timer_manager'], 573 ['exclude', '^hi_res_timer_manager'],
573 ['exclude', '^json'], 574 ['exclude', '^json'],
574 ['exclude', '^message_pump'], 575 ['exclude', '^message_pump'],
575 ['exclude', '^process_util'], 576 ['exclude', '^process_util'],
576 ['exclude', '^system_monitor'],
577 ['exclude', '^values'], 577 ['exclude', '^values'],
578 ], 578 ],
579 }], 579 }],
580 ['OS != "mac" or >(nacl_untrusted_build)==1', { 580 ['OS != "mac" or >(nacl_untrusted_build)==1', {
581 'sources!': [ 581 'sources!': [
582 'mac/scoped_aedesc.h' 582 'mac/scoped_aedesc.h'
583 ], 583 ],
584 }], 584 }],
585 # For now, just test the *BSD platforms enough to exclude them. 585 # For now, just test the *BSD platforms enough to exclude them.
586 # Subsequent changes will include them further. 586 # Subsequent changes will include them further.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { 643 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', {
644 'sources/': [ 644 'sources/': [
645 ['exclude', '^chromeos/'], 645 ['exclude', '^chromeos/'],
646 ], 646 ],
647 }], 647 }],
648 ], 648 ],
649 }], 649 }],
650 ], 650 ],
651 }, 651 },
652 } 652 }
OLDNEW
« no previous file with comments | « no previous file | base/system_monitor/system_monitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698