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

Side by Side Diff: base/base.gypi

Issue 10959020: SystemMonitor refactoring: move power state monitor into a separate class called PowerMonitor (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Use PowerMonitor instead of SystemMonitor in XXXMain function Created 7 years, 9 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
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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 'platform_file.cc', 333 'platform_file.cc',
334 'platform_file.h', 334 'platform_file.h',
335 'platform_file_posix.cc', 335 'platform_file_posix.cc',
336 'platform_file_win.cc', 336 'platform_file_win.cc',
337 'port.h', 337 'port.h',
338 'posix/eintr_wrapper.h', 338 'posix/eintr_wrapper.h',
339 'posix/global_descriptors.cc', 339 'posix/global_descriptors.cc',
340 'posix/global_descriptors.h', 340 'posix/global_descriptors.h',
341 'posix/unix_domain_socket_linux.cc', 341 'posix/unix_domain_socket_linux.cc',
342 'posix/unix_domain_socket_linux.h', 342 'posix/unix_domain_socket_linux.h',
343 'power_monitor/power_monitor.cc',
344 'power_monitor/power_monitor.h',
345 'power_monitor/power_monitor_android.cc',
346 'power_monitor/power_monitor_android.h',
347 'power_monitor/power_monitor_ios.mm',
348 'power_monitor/power_monitor_mac.mm',
349 'power_monitor/power_monitor_posix.cc',
350 'power_monitor/power_monitor_win.cc',
351 'power_monitor/power_observer.h',
343 'process.h', 352 'process.h',
344 'process_info.h', 353 'process_info.h',
345 'process_info_mac.cc', 354 'process_info_mac.cc',
346 'process_info_win.cc', 355 'process_info_win.cc',
347 'process_linux.cc', 356 'process_linux.cc',
348 'process_posix.cc', 357 'process_posix.cc',
349 'process_util.cc', 358 'process_util.cc',
350 'process_util.h', 359 'process_util.h',
351 'process_util_freebsd.cc', 360 'process_util_freebsd.cc',
352 'process_util_ios.mm', 361 'process_util_ios.mm',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 'synchronization/lock_impl_win.cc', 437 'synchronization/lock_impl_win.cc',
429 'synchronization/spin_wait.h', 438 'synchronization/spin_wait.h',
430 'synchronization/waitable_event.h', 439 'synchronization/waitable_event.h',
431 'synchronization/waitable_event_posix.cc', 440 'synchronization/waitable_event_posix.cc',
432 'synchronization/waitable_event_watcher.h', 441 'synchronization/waitable_event_watcher.h',
433 'synchronization/waitable_event_watcher_posix.cc', 442 'synchronization/waitable_event_watcher_posix.cc',
434 'synchronization/waitable_event_watcher_win.cc', 443 'synchronization/waitable_event_watcher_win.cc',
435 'synchronization/waitable_event_win.cc', 444 'synchronization/waitable_event_win.cc',
436 'system_monitor/system_monitor.cc', 445 'system_monitor/system_monitor.cc',
437 'system_monitor/system_monitor.h', 446 'system_monitor/system_monitor.h',
438 'system_monitor/system_monitor_android.cc',
439 'system_monitor/system_monitor_android.h',
440 'system_monitor/system_monitor_ios.mm',
441 'system_monitor/system_monitor_mac.mm',
442 'system_monitor/system_monitor_posix.cc',
443 'system_monitor/system_monitor_win.cc',
444 'sys_byteorder.h', 447 'sys_byteorder.h',
445 'sys_info.cc', 448 'sys_info.cc',
446 'sys_info.h', 449 'sys_info.h',
447 'sys_info_android.cc', 450 'sys_info_android.cc',
448 'sys_info_chromeos.cc', 451 'sys_info_chromeos.cc',
449 'sys_info_freebsd.cc', 452 'sys_info_freebsd.cc',
450 'sys_info_ios.mm', 453 'sys_info_ios.mm',
451 'sys_info_linux.cc', 454 'sys_info_linux.cc',
452 'sys_info_mac.cc', 455 'sys_info_mac.cc',
453 'sys_info_openbsd.cc', 456 'sys_info_openbsd.cc',
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 'third_party/dynamic_annotations/dynamic_annotations.c', 644 'third_party/dynamic_annotations/dynamic_annotations.c',
642 ], 645 ],
643 # Metrics won't work in the NaCl sandbox. 646 # Metrics won't work in the NaCl sandbox.
644 'sources/': [ ['exclude', '^metrics/'] ], 647 'sources/': [ ['exclude', '^metrics/'] ],
645 }], 648 }],
646 ['OS == "android" and >(nacl_untrusted_build)==0', { 649 ['OS == "android" and >(nacl_untrusted_build)==0', {
647 'sources!': [ 650 'sources!': [
648 'base_paths_posix.cc', 651 'base_paths_posix.cc',
649 'files/file_path_watcher_kqueue.cc', 652 'files/file_path_watcher_kqueue.cc',
650 'files/file_path_watcher_stub.cc', 653 'files/file_path_watcher_stub.cc',
651 'system_monitor/system_monitor_posix.cc', 654 'power_monitor/power_monitor_posix.cc',
652 ], 655 ],
653 'sources/': [ 656 'sources/': [
654 ['include', '^files/file_path_watcher_linux\\.cc$'], 657 ['include', '^files/file_path_watcher_linux\\.cc$'],
655 ['include', '^process_util_linux\\.cc$'], 658 ['include', '^process_util_linux\\.cc$'],
656 ['include', '^posix/unix_domain_socket_linux\\.cc$'], 659 ['include', '^posix/unix_domain_socket_linux\\.cc$'],
657 ['include', '^strings/sys_string_conversions_posix\\.cc$'], 660 ['include', '^strings/sys_string_conversions_posix\\.cc$'],
658 ['include', '^sys_info_linux\\.cc$'], 661 ['include', '^sys_info_linux\\.cc$'],
659 ['include', '^worker_pool_linux\\.cc$'], 662 ['include', '^worker_pool_linux\\.cc$'],
660 ], 663 ],
661 }], 664 }],
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { 767 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', {
765 'sources/': [ 768 'sources/': [
766 ['exclude', '^third_party/nspr/'], 769 ['exclude', '^third_party/nspr/'],
767 ], 770 ],
768 }], 771 }],
769 ], 772 ],
770 }], 773 }],
771 ], 774 ],
772 }, 775 },
773 } 776 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698