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

Side by Side Diff: extensions/extensions.gyp

Issue 885493007: Refactoring: de-couple Extensions from "script injection System" [render side] : 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove Host::IsEmpty() and move ExtensionConsumer to extensions/renderer. Created 5 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 'common/api/sockets/sockets_manifest_data.cc', 81 'common/api/sockets/sockets_manifest_data.cc',
82 'common/api/sockets/sockets_manifest_data.h', 82 'common/api/sockets/sockets_manifest_data.h',
83 'common/api/sockets/sockets_manifest_handler.cc', 83 'common/api/sockets/sockets_manifest_handler.cc',
84 'common/api/sockets/sockets_manifest_handler.h', 84 'common/api/sockets/sockets_manifest_handler.h',
85 'common/api/sockets/sockets_manifest_permission.cc', 85 'common/api/sockets/sockets_manifest_permission.cc',
86 'common/api/sockets/sockets_manifest_permission.h', 86 'common/api/sockets/sockets_manifest_permission.h',
87 'common/cast/cast_cert_validator.cc', 87 'common/cast/cast_cert_validator.cc',
88 'common/cast/cast_cert_validator.h', 88 'common/cast/cast_cert_validator.h',
89 'common/common_manifest_handlers.cc', 89 'common/common_manifest_handlers.cc',
90 'common/common_manifest_handlers.h', 90 'common/common_manifest_handlers.h',
91 'common/host_id.cc',
91 'common/host_id.h', 92 'common/host_id.h',
92 'common/csp_validator.cc', 93 'common/csp_validator.cc',
93 'common/csp_validator.h', 94 'common/csp_validator.h',
94 'common/dom_action_types.h', 95 'common/dom_action_types.h',
95 'common/draggable_region.cc', 96 'common/draggable_region.cc',
96 'common/draggable_region.h', 97 'common/draggable_region.h',
97 'common/error_utils.cc', 98 'common/error_utils.cc',
98 'common/error_utils.h', 99 'common/error_utils.h',
99 'common/event_filter.cc', 100 'common/event_filter.cc',
100 'common/event_filter.h', 101 'common/event_filter.h',
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 'renderer/default_dispatcher_delegate.h', 980 'renderer/default_dispatcher_delegate.h',
980 'renderer/dispatcher.cc', 981 'renderer/dispatcher.cc',
981 'renderer/dispatcher.h', 982 'renderer/dispatcher.h',
982 'renderer/dispatcher_delegate.h', 983 'renderer/dispatcher_delegate.h',
983 'renderer/document_custom_bindings.cc', 984 'renderer/document_custom_bindings.cc',
984 'renderer/document_custom_bindings.h', 985 'renderer/document_custom_bindings.h',
985 'renderer/dom_activity_logger.cc', 986 'renderer/dom_activity_logger.cc',
986 'renderer/dom_activity_logger.h', 987 'renderer/dom_activity_logger.h',
987 'renderer/event_bindings.cc', 988 'renderer/event_bindings.cc',
988 'renderer/event_bindings.h', 989 'renderer/event_bindings.h',
990 'renderer/extension_consumer.cc',
991 'renderer/extension_consumer.h',
989 'renderer/extension_groups.h', 992 'renderer/extension_groups.h',
990 'renderer/extension_helper.cc', 993 'renderer/extension_helper.cc',
991 'renderer/extension_helper.h', 994 'renderer/extension_helper.h',
992 'renderer/extensions_render_frame_observer.cc', 995 'renderer/extensions_render_frame_observer.cc',
993 'renderer/extensions_render_frame_observer.h', 996 'renderer/extensions_render_frame_observer.h',
994 'renderer/extensions_renderer_client.cc', 997 'renderer/extensions_renderer_client.cc',
995 'renderer/extensions_renderer_client.h', 998 'renderer/extensions_renderer_client.h',
996 'renderer/file_system_natives.cc', 999 'renderer/file_system_natives.cc',
997 'renderer/file_system_natives.h', 1000 'renderer/file_system_natives.h',
998 'renderer/guest_view/extensions_guest_view_container.cc', 1001 'renderer/guest_view/extensions_guest_view_container.cc',
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
1243 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', 1246 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak',
1244 ], 1247 ],
1245 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', 1248 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
1246 }, 1249 },
1247 'includes': [ '../build/repack_action.gypi' ], 1250 'includes': [ '../build/repack_action.gypi' ],
1248 }, 1251 },
1249 ], 1252 ],
1250 }, 1253 },
1251 ] 1254 ]
1252 } 1255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698