| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "manifest_handlers/file_handler_info.cc", | 103 "manifest_handlers/file_handler_info.cc", |
| 104 "manifest_handlers/file_handler_info.h", | 104 "manifest_handlers/file_handler_info.h", |
| 105 "manifest_handlers/icons_handler.cc", | 105 "manifest_handlers/icons_handler.cc", |
| 106 "manifest_handlers/icons_handler.h", | 106 "manifest_handlers/icons_handler.h", |
| 107 "manifest_handlers/incognito_info.cc", | 107 "manifest_handlers/incognito_info.cc", |
| 108 "manifest_handlers/incognito_info.h", | 108 "manifest_handlers/incognito_info.h", |
| 109 "manifest_handlers/kiosk_mode_info.cc", | 109 "manifest_handlers/kiosk_mode_info.cc", |
| 110 "manifest_handlers/kiosk_mode_info.h", | 110 "manifest_handlers/kiosk_mode_info.h", |
| 111 "manifest_handlers/offline_enabled_info.cc", | 111 "manifest_handlers/offline_enabled_info.cc", |
| 112 "manifest_handlers/offline_enabled_info.h", | 112 "manifest_handlers/offline_enabled_info.h", |
| 113 "manifest_handlers/options_page_info.cc", |
| 114 "manifest_handlers/options_page_info.h", |
| 113 "manifest_handlers/permissions_parser.cc", | 115 "manifest_handlers/permissions_parser.cc", |
| 114 "manifest_handlers/permissions_parser.h", | 116 "manifest_handlers/permissions_parser.h", |
| 115 "manifest_handlers/requirements_info.cc", | 117 "manifest_handlers/requirements_info.cc", |
| 116 "manifest_handlers/requirements_info.h", | 118 "manifest_handlers/requirements_info.h", |
| 117 "manifest_handlers/sandboxed_page_info.cc", | 119 "manifest_handlers/sandboxed_page_info.cc", |
| 118 "manifest_handlers/sandboxed_page_info.h", | 120 "manifest_handlers/sandboxed_page_info.h", |
| 119 "manifest_handlers/shared_module_info.cc", | 121 "manifest_handlers/shared_module_info.cc", |
| 120 "manifest_handlers/shared_module_info.h", | 122 "manifest_handlers/shared_module_info.h", |
| 121 "manifest_handlers/web_accessible_resources_info.cc", | 123 "manifest_handlers/web_accessible_resources_info.cc", |
| 122 "manifest_handlers/web_accessible_resources_info.h", | 124 "manifest_handlers/web_accessible_resources_info.h", |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "manifest_handlers/nacl_modules_handler.h", | 245 "manifest_handlers/nacl_modules_handler.h", |
| 244 ] | 246 ] |
| 245 } | 247 } |
| 246 | 248 |
| 247 if (is_win) { | 249 if (is_win) { |
| 248 cflags = [ | 250 cflags = [ |
| 249 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 251 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 250 ] | 252 ] |
| 251 } | 253 } |
| 252 } | 254 } |
| OLD | NEW |