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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/launcher_page_info.cc", | 111 "manifest_handlers/launcher_page_info.cc", |
112 "manifest_handlers/launcher_page_info.h", | 112 "manifest_handlers/launcher_page_info.h", |
113 "manifest_handlers/offline_enabled_info.cc", | 113 "manifest_handlers/offline_enabled_info.cc", |
114 "manifest_handlers/offline_enabled_info.h", | 114 "manifest_handlers/offline_enabled_info.h", |
| 115 "manifest_handlers/options_page_info.cc", |
| 116 "manifest_handlers/options_page_info.h", |
115 "manifest_handlers/permissions_parser.cc", | 117 "manifest_handlers/permissions_parser.cc", |
116 "manifest_handlers/permissions_parser.h", | 118 "manifest_handlers/permissions_parser.h", |
117 "manifest_handlers/requirements_info.cc", | 119 "manifest_handlers/requirements_info.cc", |
118 "manifest_handlers/requirements_info.h", | 120 "manifest_handlers/requirements_info.h", |
119 "manifest_handlers/sandboxed_page_info.cc", | 121 "manifest_handlers/sandboxed_page_info.cc", |
120 "manifest_handlers/sandboxed_page_info.h", | 122 "manifest_handlers/sandboxed_page_info.h", |
121 "manifest_handlers/shared_module_info.cc", | 123 "manifest_handlers/shared_module_info.cc", |
122 "manifest_handlers/shared_module_info.h", | 124 "manifest_handlers/shared_module_info.h", |
123 "manifest_handlers/web_accessible_resources_info.cc", | 125 "manifest_handlers/web_accessible_resources_info.cc", |
124 "manifest_handlers/web_accessible_resources_info.h", | 126 "manifest_handlers/web_accessible_resources_info.h", |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 "manifest_handlers/nacl_modules_handler.h", | 247 "manifest_handlers/nacl_modules_handler.h", |
246 ] | 248 ] |
247 } | 249 } |
248 | 250 |
249 if (is_win) { | 251 if (is_win) { |
250 cflags = [ | 252 cflags = [ |
251 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 253 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
252 ] | 254 ] |
253 } | 255 } |
254 } | 256 } |
OLD | NEW |