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

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: Plumb script_injection_instance_id from WebViewGuest to script injection. 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',
101 'common/event_filtering_info.cc', 102 'common/event_filtering_info.cc',
102 'common/event_filtering_info.h', 103 'common/event_filtering_info.h',
103 'common/event_matcher.cc', 104 'common/event_matcher.cc',
104 'common/event_matcher.h', 105 'common/event_matcher.h',
105 'common/extension.cc', 106 'common/extension.cc',
106 'common/extension.h', 107 'common/extension.h',
107 'common/extension_api.cc', 108 'common/extension_api.cc',
108 'common/extension_api.h', 109 'common/extension_api.h',
110 'common/extension_consumer.cc',
111 'common/extension_consumer.h',
109 'common/extension_icon_set.cc', 112 'common/extension_icon_set.cc',
110 'common/extension_icon_set.h', 113 'common/extension_icon_set.h',
111 'common/extension_l10n_util.cc', 114 'common/extension_l10n_util.cc',
112 'common/extension_l10n_util.h', 115 'common/extension_l10n_util.h',
113 'common/extension_message_generator.cc', 116 'common/extension_message_generator.cc',
114 'common/extension_message_generator.h', 117 'common/extension_message_generator.h',
115 'common/extension_messages.cc', 118 'common/extension_messages.cc',
116 'common/extension_messages.h', 119 'common/extension_messages.h',
117 'common/extension_paths.cc', 120 'common/extension_paths.cc',
118 'common/extension_paths.h', 121 'common/extension_paths.h',
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1246 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', 1249 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak',
1247 ], 1250 ],
1248 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', 1251 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
1249 }, 1252 },
1250 'includes': [ '../build/repack_action.gypi' ], 1253 'includes': [ '../build/repack_action.gypi' ],
1251 }, 1254 },
1252 ], 1255 ],
1253 }, 1256 },
1254 ] 1257 ]
1255 } 1258 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698