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

Side by Side Diff: extensions/extensions.gyp

Issue 518653002: Add the "options_ui" extension manifest field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build issue? Created 6 years, 3 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'common/manifest_handlers/icons_handler.cc', 135 'common/manifest_handlers/icons_handler.cc',
136 'common/manifest_handlers/icons_handler.h', 136 'common/manifest_handlers/icons_handler.h',
137 'common/manifest_handlers/incognito_info.cc', 137 'common/manifest_handlers/incognito_info.cc',
138 'common/manifest_handlers/incognito_info.h', 138 'common/manifest_handlers/incognito_info.h',
139 'common/manifest_handlers/kiosk_mode_info.cc', 139 'common/manifest_handlers/kiosk_mode_info.cc',
140 'common/manifest_handlers/kiosk_mode_info.h', 140 'common/manifest_handlers/kiosk_mode_info.h',
141 'common/manifest_handlers/launcher_page_info.cc', 141 'common/manifest_handlers/launcher_page_info.cc',
142 'common/manifest_handlers/launcher_page_info.h', 142 'common/manifest_handlers/launcher_page_info.h',
143 'common/manifest_handlers/offline_enabled_info.cc', 143 'common/manifest_handlers/offline_enabled_info.cc',
144 'common/manifest_handlers/offline_enabled_info.h', 144 'common/manifest_handlers/offline_enabled_info.h',
145 'common/manifest_handlers/options_page_info.cc',
146 'common/manifest_handlers/options_page_info.h',
145 'common/manifest_handlers/permissions_parser.cc', 147 'common/manifest_handlers/permissions_parser.cc',
146 'common/manifest_handlers/permissions_parser.h', 148 'common/manifest_handlers/permissions_parser.h',
147 'common/manifest_handlers/requirements_info.cc', 149 'common/manifest_handlers/requirements_info.cc',
148 'common/manifest_handlers/requirements_info.h', 150 'common/manifest_handlers/requirements_info.h',
149 'common/manifest_handlers/sandboxed_page_info.cc', 151 'common/manifest_handlers/sandboxed_page_info.cc',
150 'common/manifest_handlers/sandboxed_page_info.h', 152 'common/manifest_handlers/sandboxed_page_info.h',
151 'common/manifest_handlers/shared_module_info.cc', 153 'common/manifest_handlers/shared_module_info.cc',
152 'common/manifest_handlers/shared_module_info.h', 154 'common/manifest_handlers/shared_module_info.h',
153 'common/manifest_handlers/web_accessible_resources_info.cc', 155 'common/manifest_handlers/web_accessible_resources_info.cc',
154 'common/manifest_handlers/web_accessible_resources_info.h', 156 'common/manifest_handlers/web_accessible_resources_info.h',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'common/api/messaging/message.h', 242 'common/api/messaging/message.h',
241 'common/api/sockets/sockets_manifest_data.cc', 243 'common/api/sockets/sockets_manifest_data.cc',
242 'common/api/sockets/sockets_manifest_data.h', 244 'common/api/sockets/sockets_manifest_data.h',
243 'common/api/sockets/sockets_manifest_handler.cc', 245 'common/api/sockets/sockets_manifest_handler.cc',
244 'common/api/sockets/sockets_manifest_handler.h', 246 'common/api/sockets/sockets_manifest_handler.h',
245 'common/api/sockets/sockets_manifest_permission.cc', 247 'common/api/sockets/sockets_manifest_permission.cc',
246 'common/api/sockets/sockets_manifest_permission.h', 248 'common/api/sockets/sockets_manifest_permission.h',
247 'common/extension_api.cc', 249 'common/extension_api.cc',
248 'common/manifest_handlers/externally_connectable.cc', 250 'common/manifest_handlers/externally_connectable.cc',
249 'common/manifest_handlers/externally_connectable.h', 251 'common/manifest_handlers/externally_connectable.h',
252 'common/manifest_handlers/options_page_info.cc',
253 'common/manifest_handlers/options_page_info.h',
250 ], 254 ],
251 }], 255 }],
252 ['disable_nacl==0', { 256 ['disable_nacl==0', {
253 # NaClModulesHandler does not use any code in NaCl, so no dependency 257 # NaClModulesHandler does not use any code in NaCl, so no dependency
254 # on nacl_common. 258 # on nacl_common.
255 'sources': [ 259 'sources': [
256 'common/manifest_handlers/nacl_modules_handler.cc', 260 'common/manifest_handlers/nacl_modules_handler.cc',
257 'common/manifest_handlers/nacl_modules_handler.h', 261 'common/manifest_handlers/nacl_modules_handler.h',
258 ], 262 ],
259 }], 263 }],
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
1100 'browser/api/cast_channel/logging.proto' 1104 'browser/api/cast_channel/logging.proto'
1101 ], 1105 ],
1102 'variables': { 1106 'variables': {
1103 'proto_in_dir': 'browser/api/cast_channel', 1107 'proto_in_dir': 'browser/api/cast_channel',
1104 'proto_out_dir': 'extensions/browser/api/cast_channel', 1108 'proto_out_dir': 'extensions/browser/api/cast_channel',
1105 }, 1109 },
1106 'includes': [ '../build/protoc.gypi' ] 1110 'includes': [ '../build/protoc.gypi' ]
1107 }, 1111 },
1108 ] 1112 ]
1109 } 1113 }
OLDNEW
« no previous file with comments | « extensions/common/manifest_handlers/options_page_info.cc ('k') | extensions/extensions_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698