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

Side by Side Diff: content/content_browser.gypi

Issue 10988011: chromeos: Implement PowerSaveBlocker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tighten DEPS include rules 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/power_save_blocker_chromeos.cc ('k') | no next file » | 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 'dependencies': [ 6 'dependencies': [
7 'browser/speech/proto/speech_proto.gyp:speech_proto', 7 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 10 '../google_apis/google_apis.gyp:google_apis',
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 'browser/pepper_helper.cc', 501 'browser/pepper_helper.cc',
502 'browser/plugin_data_remover_impl.cc', 502 'browser/plugin_data_remover_impl.cc',
503 'browser/plugin_data_remover_impl.h', 503 'browser/plugin_data_remover_impl.h',
504 'browser/plugin_loader_posix.cc', 504 'browser/plugin_loader_posix.cc',
505 'browser/plugin_loader_posix.h', 505 'browser/plugin_loader_posix.h',
506 'browser/plugin_process_host.cc', 506 'browser/plugin_process_host.cc',
507 'browser/plugin_process_host.h', 507 'browser/plugin_process_host.h',
508 'browser/plugin_process_host_mac.cc', 508 'browser/plugin_process_host_mac.cc',
509 'browser/plugin_service_impl.cc', 509 'browser/plugin_service_impl.cc',
510 'browser/plugin_service_impl.h', 510 'browser/plugin_service_impl.h',
511 'browser/power_save_blocker.h',
511 'browser/power_save_blocker_android.cc', 512 'browser/power_save_blocker_android.cc',
512 'browser/power_save_blocker.h', 513 'browser/power_save_blocker_chromeos.cc',
513 'browser/power_save_blocker_linux.cc', 514 'browser/power_save_blocker_linux.cc',
514 'browser/power_save_blocker_mac.cc', 515 'browser/power_save_blocker_mac.cc',
515 'browser/power_save_blocker_win.cc', 516 'browser/power_save_blocker_win.cc',
516 'browser/ppapi_plugin_process_host.cc', 517 'browser/ppapi_plugin_process_host.cc',
517 'browser/ppapi_plugin_process_host.h', 518 'browser/ppapi_plugin_process_host.h',
518 'browser/profiler_controller_impl.cc', 519 'browser/profiler_controller_impl.cc',
519 'browser/profiler_controller_impl.h', 520 'browser/profiler_controller_impl.h',
520 'browser/profiler_message_filter.cc', 521 'browser/profiler_message_filter.cc',
521 'browser/profiler_message_filter.h', 522 'browser/profiler_message_filter.h',
522 'browser/renderer_host/accelerated_plugin_view_mac.h', 523 'browser/renderer_host/accelerated_plugin_view_mac.h',
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 ], 999 ],
999 'dependencies': [ 1000 'dependencies': [
1000 '../third_party/sudden_motion_sensor/sudden_motion_sensor.gyp:sudden_mot ion_sensor', 1001 '../third_party/sudden_motion_sensor/sudden_motion_sensor.gyp:sudden_mot ion_sensor',
1001 ], 1002 ],
1002 }], 1003 }],
1003 ['chromeos==1', { 1004 ['chromeos==1', {
1004 'dependencies': [ 1005 'dependencies': [
1005 '../build/linux/system.gyp:dbus-glib', 1006 '../build/linux/system.gyp:dbus-glib',
1006 ], 1007 ],
1007 'sources!': [ 1008 'sources!': [
1009 'browser/power_save_blocker_linux.cc',
1008 'browser/renderer_host/gtk_key_bindings_handler.cc', 1010 'browser/renderer_host/gtk_key_bindings_handler.cc',
1009 'browser/renderer_host/gtk_key_bindings_handler.h', 1011 'browser/renderer_host/gtk_key_bindings_handler.h',
1010 ], 1012 ],
1011 }], 1013 }],
1012 ['os_bsd==1', { 1014 ['os_bsd==1', {
1013 'sources/': [ 1015 'sources/': [
1014 ['exclude', '^browser/gamepad/gamepad_platform_data_fetcher_linux\\.cc$' ], 1016 ['exclude', '^browser/gamepad/gamepad_platform_data_fetcher_linux\\.cc$' ],
1015 ['exclude', '^browser/geolocation/wifi_data_provider_linux\\.cc$'], 1017 ['exclude', '^browser/geolocation/wifi_data_provider_linux\\.cc$'],
1016 ], 1018 ],
1017 }], 1019 }],
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 ['exclude', '^browser/renderer_host/java/'], 1064 ['exclude', '^browser/renderer_host/java/'],
1063 ], 1065 ],
1064 }], 1066 }],
1065 ['input_speech==0', { 1067 ['input_speech==0', {
1066 'sources/': [ 1068 'sources/': [
1067 ['exclude', '^browser/speech/'], 1069 ['exclude', '^browser/speech/'],
1068 ], 1070 ],
1069 }], 1071 }],
1070 ], 1072 ],
1071 } 1073 }
OLDNEW
« no previous file with comments | « content/browser/power_save_blocker_chromeos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698