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

Side by Side Diff: extensions/extensions.gyp

Issue 435343002: Move NaClModulesHandler to src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: (nacl-modules) rebase, fix gyp Created 6 years, 4 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
« no previous file with comments | « extensions/common/manifest_handlers/nacl_modules_handler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
11 # GN version: //extensions/common 11 # GN version: //extensions/common
12 'target_name': 'extensions_common', 12 'target_name': 'extensions_common',
13 'type': 'static_library', 13 'type': 'static_library',
14 'dependencies': [ 14 'dependencies': [
15 # TODO(benwells): figure out what to do with the api target and 15 # TODO(benwells): figure out what to do with the api target and
16 # api resources compiled into the chrome resource bundle. 16 # api resources compiled into the chrome resource bundle.
17 # http://crbug.com/162530 17 # http://crbug.com/162530
18 '../chrome/chrome_resources.gyp:chrome_resources', 18 '../chrome/chrome_resources.gyp:chrome_resources',
19 '../components/components.gyp:url_matcher', 19 '../components/components.gyp:url_matcher',
20 '../content/content.gyp:content_common', 20 '../content/content.gyp:content_common',
21 '../crypto/crypto.gyp:crypto', 21 '../crypto/crypto.gyp:crypto',
22 # For Mojo generated headers for generated_api.cc.
23 '../device/serial/serial.gyp:device_serial_mojo',
22 '../ipc/ipc.gyp:ipc', 24 '../ipc/ipc.gyp:ipc',
23 '../net/net.gyp:net', 25 '../net/net.gyp:net',
24 '../third_party/re2/re2.gyp:re2', 26 '../third_party/re2/re2.gyp:re2',
25 '../ui/base/ui_base.gyp:ui_base', 27 '../ui/base/ui_base.gyp:ui_base',
26 '../ui/gfx/gfx.gyp:gfx_geometry', 28 '../ui/gfx/gfx.gyp:gfx_geometry',
27 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', 29 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
28 '../url/url.gyp:url_lib', 30 '../url/url.gyp:url_lib',
29 'common/api/api.gyp:extensions_api', 31 'common/api/api.gyp:extensions_api',
30 'extensions_strings.gyp:extensions_strings', 32 'extensions_strings.gyp:extensions_strings',
31 ], 33 ],
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 'common/api/sockets/sockets_manifest_data.h', 226 'common/api/sockets/sockets_manifest_data.h',
225 'common/api/sockets/sockets_manifest_handler.cc', 227 'common/api/sockets/sockets_manifest_handler.cc',
226 'common/api/sockets/sockets_manifest_handler.h', 228 'common/api/sockets/sockets_manifest_handler.h',
227 'common/api/sockets/sockets_manifest_permission.cc', 229 'common/api/sockets/sockets_manifest_permission.cc',
228 'common/api/sockets/sockets_manifest_permission.h', 230 'common/api/sockets/sockets_manifest_permission.h',
229 'common/extension_api.cc', 231 'common/extension_api.cc',
230 'common/manifest_handlers/externally_connectable.cc', 232 'common/manifest_handlers/externally_connectable.cc',
231 'common/manifest_handlers/externally_connectable.h', 233 'common/manifest_handlers/externally_connectable.h',
232 ], 234 ],
233 }], 235 }],
236 ['disable_nacl==0', {
237 # NaClModulesHandler does not use any code in NaCl, so no dependency
238 # on nacl_common.
239 'sources': [
240 'common/manifest_handlers/nacl_modules_handler.cc',
241 'common/manifest_handlers/nacl_modules_handler.h',
242 ],
243 }],
234 ], 244 ],
235 }, 245 },
236 { 246 {
237 # GN version: //extensions/browser 247 # GN version: //extensions/browser
238 'target_name': 'extensions_browser', 248 'target_name': 'extensions_browser',
239 'type': 'static_library', 249 'type': 'static_library',
240 'dependencies': [ 250 'dependencies': [
241 '../base/base.gyp:base', 251 '../base/base.gyp:base',
242 '../base/base.gyp:base_prefs', 252 '../base/base.gyp:base_prefs',
243 '../components/components.gyp:keyed_service_content', 253 '../components/components.gyp:keyed_service_content',
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 'type': 'static_library', 899 'type': 'static_library',
890 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], 900 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ],
891 'variables': { 901 'variables': {
892 'proto_in_dir': 'browser/api/cast_channel', 902 'proto_in_dir': 'browser/api/cast_channel',
893 'proto_out_dir': 'extensions/browser/api/cast_channel', 903 'proto_out_dir': 'extensions/browser/api/cast_channel',
894 }, 904 },
895 'includes': [ '../build/protoc.gypi' ] 905 'includes': [ '../build/protoc.gypi' ]
896 }, 906 },
897 ] 907 ]
898 } 908 }
OLDNEW
« no previous file with comments | « extensions/common/manifest_handlers/nacl_modules_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698