| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'common/event_filter.cc', | 91 'common/event_filter.cc', |
| 92 'common/event_filter.h', | 92 'common/event_filter.h', |
| 93 'common/event_filtering_info.cc', | 93 'common/event_filtering_info.cc', |
| 94 'common/event_filtering_info.h', | 94 'common/event_filtering_info.h', |
| 95 'common/event_matcher.cc', | 95 'common/event_matcher.cc', |
| 96 'common/event_matcher.h', | 96 'common/event_matcher.h', |
| 97 'common/extension.cc', | 97 'common/extension.cc', |
| 98 'common/extension.h', | 98 'common/extension.h', |
| 99 'common/extension_api.cc', | 99 'common/extension_api.cc', |
| 100 'common/extension_api.h', | 100 'common/extension_api.h', |
| 101 'common/extension_api_stub.cc', | |
| 102 'common/extension_icon_set.cc', | 101 'common/extension_icon_set.cc', |
| 103 'common/extension_icon_set.h', | 102 'common/extension_icon_set.h', |
| 104 'common/extension_l10n_util.cc', | 103 'common/extension_l10n_util.cc', |
| 105 'common/extension_l10n_util.h', | 104 'common/extension_l10n_util.h', |
| 106 'common/extension_message_generator.cc', | 105 'common/extension_message_generator.cc', |
| 107 'common/extension_message_generator.h', | 106 'common/extension_message_generator.h', |
| 108 'common/extension_messages.cc', | 107 'common/extension_messages.cc', |
| 109 'common/extension_messages.h', | 108 'common/extension_messages.h', |
| 110 'common/extension_paths.cc', | 109 'common/extension_paths.cc', |
| 111 'common/extension_paths.h', | 110 'common/extension_paths.h', |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 'msvs_disabled_warnings': [ 4267, ], | 259 'msvs_disabled_warnings': [ 4267, ], |
| 261 'conditions': [ | 260 'conditions': [ |
| 262 ['enable_extensions==1', { | 261 ['enable_extensions==1', { |
| 263 'dependencies': [ | 262 'dependencies': [ |
| 264 'common/api/api.gyp:extensions_api', | 263 'common/api/api.gyp:extensions_api', |
| 265 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 264 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
| 266 # For Mojo generated headers for generated_api.cc. | 265 # For Mojo generated headers for generated_api.cc. |
| 267 '../device/serial/serial.gyp:device_serial_mojo', | 266 '../device/serial/serial.gyp:device_serial_mojo', |
| 268 '../device/usb/usb.gyp:device_usb', | 267 '../device/usb/usb.gyp:device_usb', |
| 269 ], | 268 ], |
| 270 'sources!': [ | |
| 271 'common/extension_api_stub.cc', | |
| 272 ], | |
| 273 }, { # enable_extensions == 0 | 269 }, { # enable_extensions == 0 |
| 274 'sources!': [ | 270 'sources!': [ |
| 275 'common/api/bluetooth/bluetooth_manifest_data.cc', | 271 'common/api/bluetooth/bluetooth_manifest_data.cc', |
| 276 'common/api/bluetooth/bluetooth_manifest_data.h', | 272 'common/api/bluetooth/bluetooth_manifest_data.h', |
| 277 'common/api/bluetooth/bluetooth_manifest_handler.cc', | 273 'common/api/bluetooth/bluetooth_manifest_handler.cc', |
| 278 'common/api/bluetooth/bluetooth_manifest_handler.h', | 274 'common/api/bluetooth/bluetooth_manifest_handler.h', |
| 279 'common/api/bluetooth/bluetooth_manifest_permission.cc', | 275 'common/api/bluetooth/bluetooth_manifest_permission.cc', |
| 280 'common/api/bluetooth/bluetooth_manifest_permission.h', | 276 'common/api/bluetooth/bluetooth_manifest_permission.h', |
| 281 'common/api/messaging/message.h', | 277 'common/api/messaging/message.h', |
| 282 'common/api/sockets/sockets_manifest_data.cc', | 278 'common/api/sockets/sockets_manifest_data.cc', |
| (...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1228 'conditions': [ | 1224 'conditions': [ |
| 1229 ['OS=="win" and win_use_allocator_shim==1', { | 1225 ['OS=="win" and win_use_allocator_shim==1', { |
| 1230 'dependencies': [ | 1226 'dependencies': [ |
| 1231 '../base/allocator/allocator.gyp:allocator', | 1227 '../base/allocator/allocator.gyp:allocator', |
| 1232 ], | 1228 ], |
| 1233 }], | 1229 }], |
| 1234 ], | 1230 ], |
| 1235 }, | 1231 }, |
| 1236 ] | 1232 ] |
| 1237 } | 1233 } |
| OLD | NEW |