| 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 | 7 |
| 8 assert(enable_extensions) | 8 assert(enable_extensions) |
| 9 | 9 |
| 10 group("browser") { | 10 group("browser") { |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "error_map.h", | 81 "error_map.h", |
| 82 "event_listener_map.cc", | 82 "event_listener_map.cc", |
| 83 "event_listener_map.h", | 83 "event_listener_map.h", |
| 84 "event_page_tracker.h", | 84 "event_page_tracker.h", |
| 85 "event_router.cc", | 85 "event_router.cc", |
| 86 "event_router.h", | 86 "event_router.h", |
| 87 "event_router_factory.cc", | 87 "event_router_factory.cc", |
| 88 "event_router_factory.h", | 88 "event_router_factory.h", |
| 89 "events/lazy_event_dispatch_util.cc", | 89 "events/lazy_event_dispatch_util.cc", |
| 90 "events/lazy_event_dispatch_util.h", | 90 "events/lazy_event_dispatch_util.h", |
| 91 "events/lazy_event_dispatcher.cc", |
| 92 "events/lazy_event_dispatcher.h", |
| 91 "extension_api_frame_id_map.cc", | 93 "extension_api_frame_id_map.cc", |
| 92 "extension_api_frame_id_map.h", | 94 "extension_api_frame_id_map.h", |
| 93 "extension_dialog_auto_confirm.cc", | 95 "extension_dialog_auto_confirm.cc", |
| 94 "extension_dialog_auto_confirm.h", | 96 "extension_dialog_auto_confirm.h", |
| 95 "extension_error.cc", | 97 "extension_error.cc", |
| 96 "extension_error.h", | 98 "extension_error.h", |
| 97 "extension_function.cc", | 99 "extension_function.cc", |
| 98 "extension_function.h", | 100 "extension_function.h", |
| 99 "extension_function_dispatcher.cc", | 101 "extension_function_dispatcher.cc", |
| 100 "extension_function_dispatcher.h", | 102 "extension_function_dispatcher.h", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 "image_loader_factory.h", | 228 "image_loader_factory.h", |
| 227 "info_map.cc", | 229 "info_map.cc", |
| 228 "info_map.h", | 230 "info_map.h", |
| 229 "install_flag.h", | 231 "install_flag.h", |
| 230 "io_thread_extension_message_filter.cc", | 232 "io_thread_extension_message_filter.cc", |
| 231 "io_thread_extension_message_filter.h", | 233 "io_thread_extension_message_filter.h", |
| 232 "lazy_background_task_queue.cc", | 234 "lazy_background_task_queue.cc", |
| 233 "lazy_background_task_queue.h", | 235 "lazy_background_task_queue.h", |
| 234 "lazy_background_task_queue_factory.cc", | 236 "lazy_background_task_queue_factory.cc", |
| 235 "lazy_background_task_queue_factory.h", | 237 "lazy_background_task_queue_factory.h", |
| 238 "lazy_context_id.cc", |
| 239 "lazy_context_id.h", |
| 236 "load_monitoring_extension_host_queue.cc", | 240 "load_monitoring_extension_host_queue.cc", |
| 237 "load_monitoring_extension_host_queue.h", | 241 "load_monitoring_extension_host_queue.h", |
| 238 "management_policy.cc", | 242 "management_policy.cc", |
| 239 "management_policy.h", | 243 "management_policy.h", |
| 240 "mojo/keep_alive_impl.cc", | 244 "mojo/keep_alive_impl.cc", |
| 241 "mojo/keep_alive_impl.h", | 245 "mojo/keep_alive_impl.h", |
| 242 "mojo/service_registration.cc", | 246 "mojo/service_registration.cc", |
| 243 "mojo/service_registration.h", | 247 "mojo/service_registration.h", |
| 244 "notification_types.cc", | 248 "notification_types.cc", |
| 245 "notification_types.h", | 249 "notification_types.h", |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 "api/media_perception_private/media_perception_api_manager_unittest.cc", | 573 "api/media_perception_private/media_perception_api_manager_unittest.cc", |
| 570 "api/webcam_private/visca_webcam_unittest.cc", | 574 "api/webcam_private/visca_webcam_unittest.cc", |
| 571 ] | 575 ] |
| 572 | 576 |
| 573 deps += [ | 577 deps += [ |
| 574 "//chromeos:media_perception_proto", | 578 "//chromeos:media_perception_proto", |
| 575 "//chromeos:test_support", | 579 "//chromeos:test_support", |
| 576 ] | 580 ] |
| 577 } | 581 } |
| 578 } | 582 } |
| OLD | NEW |