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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 'conditions': [ | 213 'conditions': [ |
214 ['enable_extensions==1', { | 214 ['enable_extensions==1', { |
215 'dependencies': [ | 215 'dependencies': [ |
216 '../device/usb/usb.gyp:device_usb', | 216 '../device/usb/usb.gyp:device_usb', |
217 ], | 217 ], |
218 'sources!': [ | 218 'sources!': [ |
219 'common/extension_api_stub.cc', | 219 'common/extension_api_stub.cc', |
220 ], | 220 ], |
221 }, { # enable_extensions == 0 | 221 }, { # enable_extensions == 0 |
222 'sources!': [ | 222 'sources!': [ |
| 223 'common/api/messaging/message.h', |
| 224 'common/api/sockets/sockets_manifest_data.cc', |
| 225 'common/api/sockets/sockets_manifest_data.h', |
| 226 'common/api/sockets/sockets_manifest_handler.cc', |
| 227 'common/api/sockets/sockets_manifest_handler.h', |
| 228 'common/api/sockets/sockets_manifest_permission.cc', |
| 229 'common/api/sockets/sockets_manifest_permission.h', |
223 'common/extension_api.cc', | 230 'common/extension_api.cc', |
| 231 'common/manifest_handlers/externally_connectable.cc', |
| 232 'common/manifest_handlers/externally_connectable.h', |
224 ], | 233 ], |
225 }], | 234 }], |
226 ], | 235 ], |
227 }, | 236 }, |
228 { | 237 { |
229 'target_name': 'extensions_browser', | 238 'target_name': 'extensions_browser', |
230 'type': 'static_library', | 239 'type': 'static_library', |
231 'dependencies': [ | 240 'dependencies': [ |
232 '../components/components.gyp:keyed_service_content', | 241 '../components/components.gyp:keyed_service_content', |
233 '../components/components.gyp:keyed_service_core', | 242 '../components/components.gyp:keyed_service_core', |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
702 'test/test_extensions_client.cc', | 711 'test/test_extensions_client.cc', |
703 'test/test_extensions_client.h', | 712 'test/test_extensions_client.h', |
704 'test/test_permission_message_provider.cc', | 713 'test/test_permission_message_provider.cc', |
705 'test/test_permission_message_provider.h', | 714 'test/test_permission_message_provider.h', |
706 'test/test_permissions_provider.cc', | 715 'test/test_permissions_provider.cc', |
707 'test/test_permissions_provider.h', | 716 'test/test_permissions_provider.h', |
708 ], | 717 ], |
709 }, | 718 }, |
710 ] | 719 ] |
711 } | 720 } |
OLD | NEW |