| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "manifest_handlers/file_handler_info.cc", | 97 "manifest_handlers/file_handler_info.cc", |
| 98 "manifest_handlers/file_handler_info.h", | 98 "manifest_handlers/file_handler_info.h", |
| 99 "manifest_handlers/icons_handler.cc", | 99 "manifest_handlers/icons_handler.cc", |
| 100 "manifest_handlers/icons_handler.h", | 100 "manifest_handlers/icons_handler.h", |
| 101 "manifest_handlers/incognito_info.cc", | 101 "manifest_handlers/incognito_info.cc", |
| 102 "manifest_handlers/incognito_info.h", | 102 "manifest_handlers/incognito_info.h", |
| 103 "manifest_handlers/kiosk_mode_info.cc", | 103 "manifest_handlers/kiosk_mode_info.cc", |
| 104 "manifest_handlers/kiosk_mode_info.h", | 104 "manifest_handlers/kiosk_mode_info.h", |
| 105 "manifest_handlers/offline_enabled_info.cc", | 105 "manifest_handlers/offline_enabled_info.cc", |
| 106 "manifest_handlers/offline_enabled_info.h", | 106 "manifest_handlers/offline_enabled_info.h", |
| 107 "manifest_handlers/options_page_info.cc", |
| 108 "manifest_handlers/options_page_info.h", |
| 107 "manifest_handlers/permissions_parser.cc", | 109 "manifest_handlers/permissions_parser.cc", |
| 108 "manifest_handlers/permissions_parser.h", | 110 "manifest_handlers/permissions_parser.h", |
| 109 "manifest_handlers/requirements_info.cc", | 111 "manifest_handlers/requirements_info.cc", |
| 110 "manifest_handlers/requirements_info.h", | 112 "manifest_handlers/requirements_info.h", |
| 111 "manifest_handlers/sandboxed_page_info.cc", | 113 "manifest_handlers/sandboxed_page_info.cc", |
| 112 "manifest_handlers/sandboxed_page_info.h", | 114 "manifest_handlers/sandboxed_page_info.h", |
| 113 "manifest_handlers/shared_module_info.cc", | 115 "manifest_handlers/shared_module_info.cc", |
| 114 "manifest_handlers/shared_module_info.h", | 116 "manifest_handlers/shared_module_info.h", |
| 115 "manifest_handlers/web_accessible_resources_info.cc", | 117 "manifest_handlers/web_accessible_resources_info.cc", |
| 116 "manifest_handlers/web_accessible_resources_info.h", | 118 "manifest_handlers/web_accessible_resources_info.h", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 "manifest_handlers/nacl_modules_handler.h", | 232 "manifest_handlers/nacl_modules_handler.h", |
| 231 ] | 233 ] |
| 232 } | 234 } |
| 233 | 235 |
| 234 if (is_win) { | 236 if (is_win) { |
| 235 cflags = [ | 237 cflags = [ |
| 236 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 238 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 237 ] | 239 ] |
| 238 } | 240 } |
| 239 } | 241 } |
| OLD | NEW |