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

Side by Side Diff: content/content_browser.gypi

Issue 11784016: chromeos: Block system suspend while uploading files to Drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: PowerSaveBlocker is a pure interface Created 7 years, 11 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
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 'public/browser/notification_service.h', 109 'public/browser/notification_service.h',
110 'public/browser/notification_source.h', 110 'public/browser/notification_source.h',
111 'public/browser/notification_types.h', 111 'public/browser/notification_types.h',
112 'public/browser/overscroll_configuration.h', 112 'public/browser/overscroll_configuration.h',
113 'public/browser/page_navigator.cc', 113 'public/browser/page_navigator.cc',
114 'public/browser/page_navigator.h', 114 'public/browser/page_navigator.h',
115 'public/browser/pepper_flash_settings_helper.h', 115 'public/browser/pepper_flash_settings_helper.h',
116 'public/browser/plugin_data_remover.h', 116 'public/browser/plugin_data_remover.h',
117 'public/browser/plugin_service_filter.h', 117 'public/browser/plugin_service_filter.h',
118 'public/browser/plugin_service.h', 118 'public/browser/plugin_service.h',
119 'public/browser/power_save_blocker.h',
119 'public/browser/profiler_controller.h', 120 'public/browser/profiler_controller.h',
120 'public/browser/profiler_subscriber.h', 121 'public/browser/profiler_subscriber.h',
121 'public/browser/quota_permission_context.h', 122 'public/browser/quota_permission_context.h',
122 'public/browser/render_process_host.h', 123 'public/browser/render_process_host.h',
123 'public/browser/render_process_host_factory.h', 124 'public/browser/render_process_host_factory.h',
124 'public/browser/render_view_host.h', 125 'public/browser/render_view_host.h',
125 'public/browser/render_view_host_observer.cc', 126 'public/browser/render_view_host_observer.cc',
126 'public/browser/render_view_host_observer.h', 127 'public/browser/render_view_host_observer.h',
127 'public/browser/render_widget_host.h', 128 'public/browser/render_widget_host.h',
128 'public/browser/render_widget_host_view.h', 129 'public/browser/render_widget_host_view.h',
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 'browser/pepper_flash_settings_helper_impl.h', 547 'browser/pepper_flash_settings_helper_impl.h',
547 'browser/plugin_data_remover_impl.cc', 548 'browser/plugin_data_remover_impl.cc',
548 'browser/plugin_data_remover_impl.h', 549 'browser/plugin_data_remover_impl.h',
549 'browser/plugin_loader_posix.cc', 550 'browser/plugin_loader_posix.cc',
550 'browser/plugin_loader_posix.h', 551 'browser/plugin_loader_posix.h',
551 'browser/plugin_process_host.cc', 552 'browser/plugin_process_host.cc',
552 'browser/plugin_process_host.h', 553 'browser/plugin_process_host.h',
553 'browser/plugin_process_host_mac.cc', 554 'browser/plugin_process_host_mac.cc',
554 'browser/plugin_service_impl.cc', 555 'browser/plugin_service_impl.cc',
555 'browser/plugin_service_impl.h', 556 'browser/plugin_service_impl.h',
556 'browser/power_save_blocker.h',
557 'browser/power_save_blocker_android.cc', 557 'browser/power_save_blocker_android.cc',
558 'browser/power_save_blocker_chromeos.cc', 558 'browser/power_save_blocker_chromeos.cc',
559 'browser/power_save_blocker_linux.cc', 559 'browser/power_save_blocker_linux.cc',
560 'browser/power_save_blocker_mac.cc', 560 'browser/power_save_blocker_mac.cc',
561 'browser/power_save_blocker_win.cc', 561 'browser/power_save_blocker_win.cc',
562 'browser/ppapi_plugin_process_host.cc', 562 'browser/ppapi_plugin_process_host.cc',
563 'browser/ppapi_plugin_process_host.h', 563 'browser/ppapi_plugin_process_host.h',
564 'browser/profiler_controller_impl.cc', 564 'browser/profiler_controller_impl.cc',
565 'browser/profiler_controller_impl.h', 565 'browser/profiler_controller_impl.h',
566 'browser/profiler_message_filter.cc', 566 'browser/profiler_message_filter.cc',
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 ['exclude', '^browser/speech/'], 1162 ['exclude', '^browser/speech/'],
1163 ], 1163 ],
1164 }], 1164 }],
1165 ['linux_use_libgps==1', { 1165 ['linux_use_libgps==1', {
1166 'dependencies': [ 1166 'dependencies': [
1167 '../build/linux/system.gyp:libgps', 1167 '../build/linux/system.gyp:libgps',
1168 ], 1168 ],
1169 }], 1169 }],
1170 ], 1170 ],
1171 } 1171 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698