OLD | NEW |
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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 'common/api/sockets/sockets_manifest_data.h', | 224 'common/api/sockets/sockets_manifest_data.h', |
225 'common/api/sockets/sockets_manifest_handler.cc', | 225 'common/api/sockets/sockets_manifest_handler.cc', |
226 'common/api/sockets/sockets_manifest_handler.h', | 226 'common/api/sockets/sockets_manifest_handler.h', |
227 'common/api/sockets/sockets_manifest_permission.cc', | 227 'common/api/sockets/sockets_manifest_permission.cc', |
228 'common/api/sockets/sockets_manifest_permission.h', | 228 'common/api/sockets/sockets_manifest_permission.h', |
229 'common/extension_api.cc', | 229 'common/extension_api.cc', |
230 'common/manifest_handlers/externally_connectable.cc', | 230 'common/manifest_handlers/externally_connectable.cc', |
231 'common/manifest_handlers/externally_connectable.h', | 231 'common/manifest_handlers/externally_connectable.h', |
232 ], | 232 ], |
233 }], | 233 }], |
| 234 ['disable_nacl==0', { |
| 235 'dependencies': [ |
| 236 '<(DEPTH)/components/nacl.gyp:nacl_common', |
| 237 ], |
| 238 'sources': [ |
| 239 'common/manifest_handlers/nacl_modules_handler.cc', |
| 240 'common/manifest_handlers/nacl_modules_handler.h', |
| 241 ], |
| 242 }], |
234 ], | 243 ], |
235 }, | 244 }, |
236 { | 245 { |
237 # GN version: //extensions/browser | 246 # GN version: //extensions/browser |
238 'target_name': 'extensions_browser', | 247 'target_name': 'extensions_browser', |
239 'type': 'static_library', | 248 'type': 'static_library', |
240 'dependencies': [ | 249 'dependencies': [ |
241 '../base/base.gyp:base', | 250 '../base/base.gyp:base', |
242 '../base/base.gyp:base_prefs', | 251 '../base/base.gyp:base_prefs', |
243 '../components/components.gyp:keyed_service_content', | 252 '../components/components.gyp:keyed_service_content', |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 'type': 'static_library', | 895 'type': 'static_library', |
887 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], | 896 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], |
888 'variables': { | 897 'variables': { |
889 'proto_in_dir': 'browser/api/cast_channel', | 898 'proto_in_dir': 'browser/api/cast_channel', |
890 'proto_out_dir': 'extensions/browser/api/cast_channel', | 899 'proto_out_dir': 'extensions/browser/api/cast_channel', |
891 }, | 900 }, |
892 'includes': [ '../build/protoc.gypi' ] | 901 'includes': [ '../build/protoc.gypi' ] |
893 }, | 902 }, |
894 ] | 903 ] |
895 } | 904 } |
OLD | NEW |