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

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: update Created 8 years, 1 month 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 'pending_task.h', 301 'pending_task.h',
302 'pickle.cc', 302 'pickle.cc',
303 'pickle.h', 303 'pickle.h',
304 'platform_file.cc', 304 'platform_file.cc',
305 'platform_file.h', 305 'platform_file.h',
306 'platform_file_posix.cc', 306 'platform_file_posix.cc',
307 'platform_file_win.cc', 307 'platform_file_win.cc',
308 'port.h', 308 'port.h',
309 'posix/unix_domain_socket.cc', 309 'posix/unix_domain_socket.cc',
310 'posix/unix_domain_socket.h', 310 'posix/unix_domain_socket.h',
311 'power_monitor/power_monitor.cc',
312 'power_monitor/power_monitor.h',
313 'power_monitor/power_monitor_android.cc',
314 'power_monitor/power_monitor_android.h',
315 'power_monitor/power_monitor_ios.mm',
316 'power_monitor/power_monitor_mac.mm',
317 'power_monitor/power_monitor_posix.cc',
318 'power_monitor/power_monitor_win.cc',
319 'power_monitor/power_observer.h',
311 'process.h', 320 'process.h',
312 'process_info.h', 321 'process_info.h',
313 'process_info_mac.cc', 322 'process_info_mac.cc',
314 'process_info_win.cc', 323 'process_info_win.cc',
315 'process_linux.cc', 324 'process_linux.cc',
316 'process_posix.cc', 325 'process_posix.cc',
317 'process_util.cc', 326 'process_util.cc',
318 'process_util.h', 327 'process_util.h',
319 'process_util_freebsd.cc', 328 'process_util_freebsd.cc',
320 'process_util_ios.mm', 329 'process_util_ios.mm',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 'synchronization/lock_impl_win.cc', 396 'synchronization/lock_impl_win.cc',
388 'synchronization/spin_wait.h', 397 'synchronization/spin_wait.h',
389 'synchronization/waitable_event.h', 398 'synchronization/waitable_event.h',
390 'synchronization/waitable_event_posix.cc', 399 'synchronization/waitable_event_posix.cc',
391 'synchronization/waitable_event_watcher.h', 400 'synchronization/waitable_event_watcher.h',
392 'synchronization/waitable_event_watcher_posix.cc', 401 'synchronization/waitable_event_watcher_posix.cc',
393 'synchronization/waitable_event_watcher_win.cc', 402 'synchronization/waitable_event_watcher_win.cc',
394 'synchronization/waitable_event_win.cc', 403 'synchronization/waitable_event_win.cc',
395 'system_monitor/system_monitor.cc', 404 'system_monitor/system_monitor.cc',
396 'system_monitor/system_monitor.h', 405 'system_monitor/system_monitor.h',
397 'system_monitor/system_monitor_android.cc',
398 'system_monitor/system_monitor_android.h',
399 'system_monitor/system_monitor_ios.mm',
400 'system_monitor/system_monitor_mac.mm',
401 'system_monitor/system_monitor_posix.cc',
402 'system_monitor/system_monitor_win.cc',
403 'sys_byteorder.h', 406 'sys_byteorder.h',
404 'sys_info.cc', 407 'sys_info.cc',
405 'sys_info.h', 408 'sys_info.h',
406 'sys_info_android.cc', 409 'sys_info_android.cc',
407 'sys_info_chromeos.cc', 410 'sys_info_chromeos.cc',
408 'sys_info_freebsd.cc', 411 'sys_info_freebsd.cc',
409 'sys_info_ios.mm', 412 'sys_info_ios.mm',
410 'sys_info_linux.cc', 413 'sys_info_linux.cc',
411 'sys_info_mac.cc', 414 'sys_info_mac.cc',
412 'sys_info_openbsd.cc', 415 'sys_info_openbsd.cc',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 'third_party/dynamic_annotations/dynamic_annotations.c', 599 'third_party/dynamic_annotations/dynamic_annotations.c',
597 ], 600 ],
598 # Metrics won't work in the NaCl sandbox. 601 # Metrics won't work in the NaCl sandbox.
599 'sources/': [ ['exclude', '^metrics/'] ], 602 'sources/': [ ['exclude', '^metrics/'] ],
600 }], 603 }],
601 ['OS == "android" and >(nacl_untrusted_build)==0', { 604 ['OS == "android" and >(nacl_untrusted_build)==0', {
602 'sources!': [ 605 'sources!': [
603 'base_paths_posix.cc', 606 'base_paths_posix.cc',
604 'files/file_path_watcher_kqueue.cc', 607 'files/file_path_watcher_kqueue.cc',
605 'files/file_path_watcher_stub.cc', 608 'files/file_path_watcher_stub.cc',
606 'system_monitor/system_monitor_posix.cc', 609 'power_monitor/power_monitor_posix.cc',
607 ], 610 ],
608 'sources/': [ 611 'sources/': [
609 ['include', '^files/file_path_watcher_linux\\.cc$'], 612 ['include', '^files/file_path_watcher_linux\\.cc$'],
610 ['include', '^process_util_linux\\.cc$'], 613 ['include', '^process_util_linux\\.cc$'],
611 ['include', '^sys_info_linux\\.cc$'], 614 ['include', '^sys_info_linux\\.cc$'],
612 ['include', '^sys_string_conversions_posix\\.cc$'], 615 ['include', '^sys_string_conversions_posix\\.cc$'],
613 ['include', '^worker_pool_linux\\.cc$'], 616 ['include', '^worker_pool_linux\\.cc$'],
614 ], 617 ],
615 }], 618 }],
616 ['OS == "ios"', { 619 ['OS == "ios"', {
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 # Remove all unnecessary files for build_nexe.py to avoid exceeding 713 # Remove all unnecessary files for build_nexe.py to avoid exceeding
711 # command-line-string limitation when building NaCl on Windows. 714 # command-line-string limitation when building NaCl on Windows.
712 ['OS == "win" and >(nacl_untrusted_build)==1', { 715 ['OS == "win" and >(nacl_untrusted_build)==1', {
713 'sources/': [ ['exclude', '\\.h$'] ], 716 'sources/': [ ['exclude', '\\.h$'] ],
714 }], 717 }],
715 ], 718 ],
716 }], 719 }],
717 ], 720 ],
718 }, 721 },
719 } 722 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/hi_res_timer_manager.h » ('j') | base/power_monitor/power_monitor.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698