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

Side by Side Diff: content/content_browser.gypi

Issue 1116693002: [NOT FOR REVIEW] Significantly simplify the PlatformNotificationService //content API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base_static', 7 '../base/base.gyp:base_static',
8 '../crypto/crypto.gyp:crypto', 8 '../crypto/crypto.gyp:crypto',
9 '../device/vibration/vibration.gyp:device_vibration', 9 '../device/vibration/vibration.gyp:device_vibration',
10 '../device/vibration/vibration.gyp:device_vibration_mojo_bindings', 10 '../device/vibration/vibration.gyp:device_vibration_mojo_bindings',
(...skipping 10 matching lines...) Expand all
21 '../ui/accessibility/accessibility.gyp:accessibility', 21 '../ui/accessibility/accessibility.gyp:accessibility',
22 '../ui/accessibility/accessibility.gyp:ax_gen', 22 '../ui/accessibility/accessibility.gyp:ax_gen',
23 '../ui/base/ui_base.gyp:ui_base', 23 '../ui/base/ui_base.gyp:ui_base',
24 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', 24 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
25 '../ui/events/events.gyp:blink', 25 '../ui/events/events.gyp:blink',
26 '../ui/events/events.gyp:events', 26 '../ui/events/events.gyp:events',
27 '../ui/events/events.gyp:events_base', 27 '../ui/events/events.gyp:events_base',
28 '../ui/events/events.gyp:gesture_detection', 28 '../ui/events/events.gyp:gesture_detection',
29 '../ui/gfx/gfx.gyp:gfx', 29 '../ui/gfx/gfx.gyp:gfx',
30 '../ui/gfx/gfx.gyp:gfx_geometry', 30 '../ui/gfx/gfx.gyp:gfx_geometry',
31 '../ui/message_center/message_center.gyp:message_center',
31 '../ui/resources/ui_resources.gyp:ui_resources', 32 '../ui/resources/ui_resources.gyp:ui_resources',
32 '../ui/snapshot/snapshot.gyp:snapshot', 33 '../ui/snapshot/snapshot.gyp:snapshot',
33 'browser/background_sync/background_sync_proto.gyp:background_sync_proto', 34 'browser/background_sync/background_sync_proto.gyp:background_sync_proto',
34 'browser/cache_storage/cache_storage_proto.gyp:cache_storage_proto', 35 'browser/cache_storage/cache_storage_proto.gyp:cache_storage_proto',
35 'browser/notifications/notification_proto.gyp:notification_proto', 36 'browser/notifications/notification_proto.gyp:notification_proto',
36 'browser/service_worker/service_worker_proto.gyp:service_worker_proto', 37 'browser/service_worker/service_worker_proto.gyp:service_worker_proto',
37 'browser/speech/proto/speech_proto.gyp:speech_proto', 38 'browser/speech/proto/speech_proto.gyp:speech_proto',
38 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', 39 'content_common_mojo_bindings.gyp:content_common_mojo_bindings',
39 ], 40 ],
40 'export_dependent_settings': [ 41 'export_dependent_settings': [
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 'browser/notification_service_impl.cc', 1028 'browser/notification_service_impl.cc',
1028 'browser/notification_service_impl.h', 1029 'browser/notification_service_impl.h',
1029 'browser/notifications/notification_database.cc', 1030 'browser/notifications/notification_database.cc',
1030 'browser/notifications/notification_database.h', 1031 'browser/notifications/notification_database.h',
1031 'browser/notifications/notification_database_data_conversions.cc', 1032 'browser/notifications/notification_database_data_conversions.cc',
1032 'browser/notifications/notification_database_data_conversions.h', 1033 'browser/notifications/notification_database_data_conversions.h',
1033 'browser/notifications/notification_event_dispatcher_impl.cc', 1034 'browser/notifications/notification_event_dispatcher_impl.cc',
1034 'browser/notifications/notification_event_dispatcher_impl.h', 1035 'browser/notifications/notification_event_dispatcher_impl.h',
1035 'browser/notifications/notification_message_filter.cc', 1036 'browser/notifications/notification_message_filter.cc',
1036 'browser/notifications/notification_message_filter.h', 1037 'browser/notifications/notification_message_filter.h',
1038 'browser/notifications/notification_id_generator.cc',
1039 'browser/notifications/notification_id_generator.h',
1037 'browser/notifications/page_notification_delegate.cc', 1040 'browser/notifications/page_notification_delegate.cc',
1038 'browser/notifications/page_notification_delegate.h', 1041 'browser/notifications/page_notification_delegate.h',
1042 'browser/notifications/persistent_notification_delegate.cc',
1043 'browser/notifications/persistent_notification_delegate.h',
1039 'browser/notifications/platform_notification_context_impl.cc', 1044 'browser/notifications/platform_notification_context_impl.cc',
1040 'browser/notifications/platform_notification_context_impl.h', 1045 'browser/notifications/platform_notification_context_impl.h',
1041 'browser/permissions/permission_service_context.cc', 1046 'browser/permissions/permission_service_context.cc',
1042 'browser/permissions/permission_service_context.h', 1047 'browser/permissions/permission_service_context.h',
1043 'browser/permissions/permission_service_impl.cc', 1048 'browser/permissions/permission_service_impl.cc',
1044 'browser/permissions/permission_service_impl.h', 1049 'browser/permissions/permission_service_impl.h',
1045 'browser/power_monitor_message_broadcaster.cc', 1050 'browser/power_monitor_message_broadcaster.cc',
1046 'browser/power_monitor_message_broadcaster.h', 1051 'browser/power_monitor_message_broadcaster.h',
1047 'browser/power_profiler/power_data_provider.h', 1052 'browser/power_profiler/power_data_provider.h',
1048 'browser/power_profiler/power_event.cc', 1053 'browser/power_profiler/power_event.cc',
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after
2032 'browser/media/media_web_contents_observer.h', 2037 'browser/media/media_web_contents_observer.h',
2033 ], 2038 ],
2034 }], 2039 }],
2035 ['OS == "linux" and use_openssl==1', { 2040 ['OS == "linux" and use_openssl==1', {
2036 'dependencies': [ 2041 'dependencies': [
2037 '../third_party/boringssl/boringssl.gyp:boringssl', 2042 '../third_party/boringssl/boringssl.gyp:boringssl',
2038 ], 2043 ],
2039 }], 2044 }],
2040 ], 2045 ],
2041 } 2046 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698