| 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("//extensions/features/features.gni") | 6 import("//extensions/features/features.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 # TODO(crbug.com/731689): Assert that extensions are enabled. | 9 # TODO(crbug.com/731689): Assert that extensions are enabled. |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "api/printer_provider/usb_printer_manifest_handler.cc", | 66 "api/printer_provider/usb_printer_manifest_handler.cc", |
| 67 "api/printer_provider/usb_printer_manifest_handler.h", | 67 "api/printer_provider/usb_printer_manifest_handler.h", |
| 68 "api/sockets/sockets_manifest_data.cc", | 68 "api/sockets/sockets_manifest_data.cc", |
| 69 "api/sockets/sockets_manifest_data.h", | 69 "api/sockets/sockets_manifest_data.h", |
| 70 "api/sockets/sockets_manifest_handler.cc", | 70 "api/sockets/sockets_manifest_handler.cc", |
| 71 "api/sockets/sockets_manifest_handler.h", | 71 "api/sockets/sockets_manifest_handler.h", |
| 72 "api/sockets/sockets_manifest_permission.cc", | 72 "api/sockets/sockets_manifest_permission.cc", |
| 73 "api/sockets/sockets_manifest_permission.h", | 73 "api/sockets/sockets_manifest_permission.h", |
| 74 "common_manifest_handlers.cc", | 74 "common_manifest_handlers.cc", |
| 75 "common_manifest_handlers.h", | 75 "common_manifest_handlers.h", |
| 76 "common_param_traits.h", |
| 76 "csp_validator.cc", | 77 "csp_validator.cc", |
| 77 "csp_validator.h", | 78 "csp_validator.h", |
| 78 "dom_action_types.h", | 79 "dom_action_types.h", |
| 79 "draggable_region.cc", | 80 "draggable_region.cc", |
| 80 "draggable_region.h", | 81 "draggable_region.h", |
| 81 "error_utils.cc", | 82 "error_utils.cc", |
| 82 "error_utils.h", | 83 "error_utils.h", |
| 83 "event_filter.cc", | 84 "event_filter.cc", |
| 84 "event_filter.h", | 85 "event_filter.h", |
| 85 "event_filtering_info.cc", | 86 "event_filtering_info.cc", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 "manifest_handlers/requirements_info.cc", | 191 "manifest_handlers/requirements_info.cc", |
| 191 "manifest_handlers/requirements_info.h", | 192 "manifest_handlers/requirements_info.h", |
| 192 "manifest_handlers/sandboxed_page_info.cc", | 193 "manifest_handlers/sandboxed_page_info.cc", |
| 193 "manifest_handlers/sandboxed_page_info.h", | 194 "manifest_handlers/sandboxed_page_info.h", |
| 194 "manifest_handlers/shared_module_info.cc", | 195 "manifest_handlers/shared_module_info.cc", |
| 195 "manifest_handlers/shared_module_info.h", | 196 "manifest_handlers/shared_module_info.h", |
| 196 "manifest_handlers/web_accessible_resources_info.cc", | 197 "manifest_handlers/web_accessible_resources_info.cc", |
| 197 "manifest_handlers/web_accessible_resources_info.h", | 198 "manifest_handlers/web_accessible_resources_info.h", |
| 198 "manifest_handlers/webview_info.cc", | 199 "manifest_handlers/webview_info.cc", |
| 199 "manifest_handlers/webview_info.h", | 200 "manifest_handlers/webview_info.h", |
| 200 "manifest_location_param_traits.h", | |
| 201 "manifest_url_handlers.cc", | 201 "manifest_url_handlers.cc", |
| 202 "manifest_url_handlers.h", | 202 "manifest_url_handlers.h", |
| 203 "message_bundle.cc", | 203 "message_bundle.cc", |
| 204 "message_bundle.h", | 204 "message_bundle.h", |
| 205 "one_shot_event.cc", | 205 "one_shot_event.cc", |
| 206 "one_shot_event.h", | 206 "one_shot_event.h", |
| 207 "permissions/api_permission.cc", | 207 "permissions/api_permission.cc", |
| 208 "permissions/api_permission.h", | 208 "permissions/api_permission.h", |
| 209 "permissions/api_permission_set.cc", | 209 "permissions/api_permission_set.cc", |
| 210 "permissions/api_permission_set.h", | 210 "permissions/api_permission_set.h", |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 "//ui/base", | 389 "//ui/base", |
| 390 "//ui/gfx", | 390 "//ui/gfx", |
| 391 "//url", | 391 "//url", |
| 392 ] | 392 ] |
| 393 | 393 |
| 394 if (is_chromeos) { | 394 if (is_chromeos) { |
| 395 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] | 395 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] |
| 396 } | 396 } |
| 397 } | 397 } |
| 398 } # enable_extensions | 398 } # enable_extensions |
| OLD | NEW |