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

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 patch per vandebo's comments Created 8 years, 2 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'pending_task.h', 297 'pending_task.h',
298 'pickle.cc', 298 'pickle.cc',
299 'pickle.h', 299 'pickle.h',
300 'platform_file.cc', 300 'platform_file.cc',
301 'platform_file.h', 301 'platform_file.h',
302 'platform_file_posix.cc', 302 'platform_file_posix.cc',
303 'platform_file_win.cc', 303 'platform_file_win.cc',
304 'port.h', 304 'port.h',
305 'posix/unix_domain_socket.cc', 305 'posix/unix_domain_socket.cc',
306 'posix/unix_domain_socket.h', 306 'posix/unix_domain_socket.h',
307 'power_monitor/power_monitor.cc',
308 'power_monitor/power_monitor.h',
309 'power_monitor/power_monitor_android.cc',
310 'power_monitor/power_monitor_ios.mm',
311 'power_monitor/power_monitor_mac.mm',
312 'power_monitor/power_monitor_posix.cc',
313 'power_monitor/power_monitor_win.cc',
307 'process.h', 314 'process.h',
308 'process_info.h', 315 'process_info.h',
309 'process_info_mac.cc', 316 'process_info_mac.cc',
310 'process_info_win.cc', 317 'process_info_win.cc',
311 'process_linux.cc', 318 'process_linux.cc',
312 'process_posix.cc', 319 'process_posix.cc',
313 'process_util.cc', 320 'process_util.cc',
314 'process_util.h', 321 'process_util.h',
315 'process_util_freebsd.cc', 322 'process_util_freebsd.cc',
316 'process_util_ios.mm', 323 'process_util_ios.mm',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 'synchronization/lock_impl_win.cc', 390 'synchronization/lock_impl_win.cc',
384 'synchronization/spin_wait.h', 391 'synchronization/spin_wait.h',
385 'synchronization/waitable_event.h', 392 'synchronization/waitable_event.h',
386 'synchronization/waitable_event_posix.cc', 393 'synchronization/waitable_event_posix.cc',
387 'synchronization/waitable_event_watcher.h', 394 'synchronization/waitable_event_watcher.h',
388 'synchronization/waitable_event_watcher_posix.cc', 395 'synchronization/waitable_event_watcher_posix.cc',
389 'synchronization/waitable_event_watcher_win.cc', 396 'synchronization/waitable_event_watcher_win.cc',
390 'synchronization/waitable_event_win.cc', 397 'synchronization/waitable_event_win.cc',
391 'system_monitor/system_monitor.cc', 398 'system_monitor/system_monitor.cc',
392 'system_monitor/system_monitor.h', 399 'system_monitor/system_monitor.h',
393 'system_monitor/system_monitor_android.cc',
394 'system_monitor/system_monitor_ios.mm',
395 'system_monitor/system_monitor_mac.mm',
396 'system_monitor/system_monitor_posix.cc',
397 'system_monitor/system_monitor_win.cc',
398 'sys_byteorder.h', 400 'sys_byteorder.h',
399 'sys_info.h', 401 'sys_info.h',
400 'sys_info_android.cc', 402 'sys_info_android.cc',
401 'sys_info_chromeos.cc', 403 'sys_info_chromeos.cc',
402 'sys_info_freebsd.cc', 404 'sys_info_freebsd.cc',
403 'sys_info_ios.mm', 405 'sys_info_ios.mm',
404 'sys_info_linux.cc', 406 'sys_info_linux.cc',
405 'sys_info_mac.cc', 407 'sys_info_mac.cc',
406 'sys_info_openbsd.cc', 408 'sys_info_openbsd.cc',
407 'sys_info_posix.cc', 409 'sys_info_posix.cc',
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 'sys_info_posix.cc', 591 'sys_info_posix.cc',
590 'threading/sequenced_worker_pool.cc', 592 'threading/sequenced_worker_pool.cc',
591 'third_party/dynamic_annotations/dynamic_annotations.c', 593 'third_party/dynamic_annotations/dynamic_annotations.c',
592 ], 594 ],
593 }], 595 }],
594 ['OS == "android" and >(nacl_untrusted_build)==0', { 596 ['OS == "android" and >(nacl_untrusted_build)==0', {
595 'sources!': [ 597 'sources!': [
596 'base_paths_posix.cc', 598 'base_paths_posix.cc',
597 'files/file_path_watcher_kqueue.cc', 599 'files/file_path_watcher_kqueue.cc',
598 'files/file_path_watcher_stub.cc', 600 'files/file_path_watcher_stub.cc',
599 'system_monitor/system_monitor_posix.cc', 601 'power_monitor/power_monitor_posix.cc',
600 ], 602 ],
601 'sources/': [ 603 'sources/': [
602 ['include', '^files/file_path_watcher_linux\\.cc$'], 604 ['include', '^files/file_path_watcher_linux\\.cc$'],
603 ['include', '^process_util_linux\\.cc$'], 605 ['include', '^process_util_linux\\.cc$'],
604 ['include', '^sys_info_linux\\.cc$'], 606 ['include', '^sys_info_linux\\.cc$'],
605 ['include', '^sys_string_conversions_posix\\.cc$'], 607 ['include', '^sys_string_conversions_posix\\.cc$'],
606 ['include', '^worker_pool_linux\\.cc$'], 608 ['include', '^worker_pool_linux\\.cc$'],
607 ], 609 ],
608 }], 610 }],
609 ['OS == "ios"', { 611 ['OS == "ios"', {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 # Remove all unnecessary files for build_nexe.py to avoid exceeding 704 # Remove all unnecessary files for build_nexe.py to avoid exceeding
703 # command-line-string limitation when building NaCl on Windows. 705 # command-line-string limitation when building NaCl on Windows.
704 ['OS == "win" and >(nacl_untrusted_build)==1', { 706 ['OS == "win" and >(nacl_untrusted_build)==1', {
705 'sources/': [ ['exclude', '\\.h$'] ], 707 'sources/': [ ['exclude', '\\.h$'] ],
706 }], 708 }],
707 ], 709 ],
708 }], 710 }],
709 ], 711 ],
710 }, 712 },
711 } 713 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698