| 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", |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "api/messaging/message.h", | 231 "api/messaging/message.h", |
| 232 "api/sockets/sockets_manifest_data.cc", | 232 "api/sockets/sockets_manifest_data.cc", |
| 233 "api/sockets/sockets_manifest_data.h", | 233 "api/sockets/sockets_manifest_data.h", |
| 234 "api/sockets/sockets_manifest_handler.cc", | 234 "api/sockets/sockets_manifest_handler.cc", |
| 235 "api/sockets/sockets_manifest_handler.h", | 235 "api/sockets/sockets_manifest_handler.h", |
| 236 "api/sockets/sockets_manifest_permission.cc", | 236 "api/sockets/sockets_manifest_permission.cc", |
| 237 "api/sockets/sockets_manifest_permission.h", | 237 "api/sockets/sockets_manifest_permission.h", |
| 238 "extension_api.cc", | 238 "extension_api.cc", |
| 239 "manifest_handlers/externally_connectable.cc", | 239 "manifest_handlers/externally_connectable.cc", |
| 240 "manifest_handlers/externally_connectable.h", | 240 "manifest_handlers/externally_connectable.h", |
| 241 "manifest_handlers/options_page_info.cc", |
| 242 "manifest_handlers/options_page_info.h", |
| 241 ] | 243 ] |
| 242 } | 244 } |
| 243 | 245 |
| 244 if (enable_nacl) { | 246 if (enable_nacl) { |
| 245 sources += [ | 247 sources += [ |
| 246 "manifest_handlers/nacl_modules_handler.cc", | 248 "manifest_handlers/nacl_modules_handler.cc", |
| 247 "manifest_handlers/nacl_modules_handler.h", | 249 "manifest_handlers/nacl_modules_handler.h", |
| 248 ] | 250 ] |
| 249 } | 251 } |
| 250 | 252 |
| 251 if (is_win) { | 253 if (is_win) { |
| 252 cflags = [ | 254 cflags = [ |
| 253 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 255 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 254 ] | 256 ] |
| 255 } | 257 } |
| 256 } | 258 } |
| OLD | NEW |