| 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 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 # GYP version: extensions/extensions.gyp:extensions_common_constants | 8 # GYP version: extensions/extensions.gyp:extensions_common_constants |
| 9 source_set("common_constants") { | 9 source_set("common_constants") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "manifest_handlers/file_handler_info.cc", | 131 "manifest_handlers/file_handler_info.cc", |
| 132 "manifest_handlers/file_handler_info.h", | 132 "manifest_handlers/file_handler_info.h", |
| 133 "manifest_handlers/icons_handler.cc", | 133 "manifest_handlers/icons_handler.cc", |
| 134 "manifest_handlers/icons_handler.h", | 134 "manifest_handlers/icons_handler.h", |
| 135 "manifest_handlers/incognito_info.cc", | 135 "manifest_handlers/incognito_info.cc", |
| 136 "manifest_handlers/incognito_info.h", | 136 "manifest_handlers/incognito_info.h", |
| 137 "manifest_handlers/kiosk_mode_info.cc", | 137 "manifest_handlers/kiosk_mode_info.cc", |
| 138 "manifest_handlers/kiosk_mode_info.h", | 138 "manifest_handlers/kiosk_mode_info.h", |
| 139 "manifest_handlers/launcher_page_info.cc", | 139 "manifest_handlers/launcher_page_info.cc", |
| 140 "manifest_handlers/launcher_page_info.h", | 140 "manifest_handlers/launcher_page_info.h", |
| 141 "manifest_handlers/mime_types_handler.cc", |
| 142 "manifest_handlers/mime_types_handler.h", |
| 141 "manifest_handlers/oauth2_manifest_handler.cc", | 143 "manifest_handlers/oauth2_manifest_handler.cc", |
| 142 "manifest_handlers/oauth2_manifest_handler.h", | 144 "manifest_handlers/oauth2_manifest_handler.h", |
| 143 "manifest_handlers/offline_enabled_info.cc", | 145 "manifest_handlers/offline_enabled_info.cc", |
| 144 "manifest_handlers/offline_enabled_info.h", | 146 "manifest_handlers/offline_enabled_info.h", |
| 145 "manifest_handlers/options_page_info.cc", | 147 "manifest_handlers/options_page_info.cc", |
| 146 "manifest_handlers/options_page_info.h", | 148 "manifest_handlers/options_page_info.h", |
| 147 "manifest_handlers/permissions_parser.cc", | 149 "manifest_handlers/permissions_parser.cc", |
| 148 "manifest_handlers/permissions_parser.h", | 150 "manifest_handlers/permissions_parser.h", |
| 149 "manifest_handlers/requirements_info.cc", | 151 "manifest_handlers/requirements_info.cc", |
| 150 "manifest_handlers/requirements_info.h", | 152 "manifest_handlers/requirements_info.h", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 "manifest_handlers/nacl_modules_handler.cc", | 256 "manifest_handlers/nacl_modules_handler.cc", |
| 255 "manifest_handlers/nacl_modules_handler.h", | 257 "manifest_handlers/nacl_modules_handler.h", |
| 256 ] | 258 ] |
| 257 } | 259 } |
| 258 | 260 |
| 259 if (is_win) { | 261 if (is_win) { |
| 260 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. | 262 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int
truncations. |
| 261 } | 263 } |
| 262 } | 264 } |
| 263 } # enable_extensions | 265 } # enable_extensions |
| OLD | NEW |