| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 # GYP version: extensions/extensions.gyp:extensions_common | 7 # GYP version: extensions/extensions.gyp:extensions_common |
| 8 source_set("common") { | 8 source_set("common") { |
| 9 sources = [ | 9 sources = [ |
| 10 "api/messaging/message.h", | 10 "api/messaging/message.h", |
| 11 "api/sockets/sockets_manifest_data.cc", | 11 "api/sockets/sockets_manifest_data.cc", |
| 12 "api/sockets/sockets_manifest_data.h", | 12 "api/sockets/sockets_manifest_data.h", |
| 13 "api/sockets/sockets_manifest_handler.cc", | 13 "api/sockets/sockets_manifest_handler.cc", |
| 14 "api/sockets/sockets_manifest_handler.h", | 14 "api/sockets/sockets_manifest_handler.h", |
| 15 "api/sockets/sockets_manifest_permission.cc", | 15 "api/sockets/sockets_manifest_permission.cc", |
| 16 "api/sockets/sockets_manifest_permission.h", | 16 "api/sockets/sockets_manifest_permission.h", |
| 17 "common_manifest_handlers.cc", | 17 "common_manifest_handlers.cc", |
| 18 "common_manifest_handlers.h", | 18 "common_manifest_handlers.h", |
| 19 "constants.cc", | 19 "constants.cc", |
| 20 "constants.h", | 20 "constants.h", |
| 21 "crx_file.cc", | |
| 22 "crx_file.h", | |
| 23 "csp_validator.cc", | 21 "csp_validator.cc", |
| 24 "csp_validator.h", | 22 "csp_validator.h", |
| 25 "dom_action_types.h", | 23 "dom_action_types.h", |
| 26 "draggable_region.cc", | 24 "draggable_region.cc", |
| 27 "draggable_region.h", | 25 "draggable_region.h", |
| 28 "error_utils.cc", | 26 "error_utils.cc", |
| 29 "error_utils.h", | 27 "error_utils.h", |
| 30 "event_filter.cc", | 28 "event_filter.cc", |
| 31 "event_filter.h", | 29 "event_filter.h", |
| 32 "event_filtering_info.cc", | 30 "event_filtering_info.cc", |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 "manifest_handlers/nacl_modules_handler.h", | 228 "manifest_handlers/nacl_modules_handler.h", |
| 231 ] | 229 ] |
| 232 } | 230 } |
| 233 | 231 |
| 234 if (is_win) { | 232 if (is_win) { |
| 235 cflags = [ | 233 cflags = [ |
| 236 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 234 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 237 ] | 235 ] |
| 238 } | 236 } |
| 239 } | 237 } |
| OLD | NEW |