Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: extensions/browser/BUILD.gn

Issue 2943583002: [extension SW] Support lazy events from extension service workers. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 "info_map.h", 230 "info_map.h",
231 "install_flag.h", 231 "install_flag.h",
232 "io_thread_extension_message_filter.cc", 232 "io_thread_extension_message_filter.cc",
233 "io_thread_extension_message_filter.h", 233 "io_thread_extension_message_filter.h",
234 "lazy_background_task_queue.cc", 234 "lazy_background_task_queue.cc",
235 "lazy_background_task_queue.h", 235 "lazy_background_task_queue.h",
236 "lazy_background_task_queue_factory.cc", 236 "lazy_background_task_queue_factory.cc",
237 "lazy_background_task_queue_factory.h", 237 "lazy_background_task_queue_factory.h",
238 "lazy_context_id.cc", 238 "lazy_context_id.cc",
239 "lazy_context_id.h", 239 "lazy_context_id.h",
240 "lazy_context_task_queue.h",
240 "load_monitoring_extension_host_queue.cc", 241 "load_monitoring_extension_host_queue.cc",
241 "load_monitoring_extension_host_queue.h", 242 "load_monitoring_extension_host_queue.h",
242 "management_policy.cc", 243 "management_policy.cc",
243 "management_policy.h", 244 "management_policy.h",
244 "mojo/keep_alive_impl.cc", 245 "mojo/keep_alive_impl.cc",
245 "mojo/keep_alive_impl.h", 246 "mojo/keep_alive_impl.h",
246 "mojo/service_registration.cc", 247 "mojo/service_registration.cc",
247 "mojo/service_registration.h", 248 "mojo/service_registration.h",
248 "notification_types.cc", 249 "notification_types.cc",
249 "notification_types.h", 250 "notification_types.h",
(...skipping 29 matching lines...) Expand all
279 "runtime_data.h", 280 "runtime_data.h",
280 "sandboxed_unpacker.cc", 281 "sandboxed_unpacker.cc",
281 "sandboxed_unpacker.h", 282 "sandboxed_unpacker.h",
282 "script_execution_observer.h", 283 "script_execution_observer.h",
283 "script_executor.cc", 284 "script_executor.cc",
284 "script_executor.h", 285 "script_executor.h",
285 "serial_extension_host_queue.cc", 286 "serial_extension_host_queue.cc",
286 "serial_extension_host_queue.h", 287 "serial_extension_host_queue.h",
287 "service_worker_manager.cc", 288 "service_worker_manager.cc",
288 "service_worker_manager.h", 289 "service_worker_manager.h",
290 "service_worker_task_queue.cc",
291 "service_worker_task_queue.h",
292 "service_worker_task_queue_factory.cc",
293 "service_worker_task_queue_factory.h",
289 "state_store.cc", 294 "state_store.cc",
290 "state_store.h", 295 "state_store.h",
291 "suggest_permission_util.cc", 296 "suggest_permission_util.cc",
292 "suggest_permission_util.h", 297 "suggest_permission_util.h",
293 "uninstall_ping_sender.cc", 298 "uninstall_ping_sender.cc",
294 "uninstall_ping_sender.h", 299 "uninstall_ping_sender.h",
295 "uninstall_reason.h", 300 "uninstall_reason.h",
296 "update_observer.h", 301 "update_observer.h",
297 "url_request_util.cc", 302 "url_request_util.cc",
298 "url_request_util.h", 303 "url_request_util.h",
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 "api/media_perception_private/media_perception_api_manager_unittest.cc", 578 "api/media_perception_private/media_perception_api_manager_unittest.cc",
574 "api/webcam_private/visca_webcam_unittest.cc", 579 "api/webcam_private/visca_webcam_unittest.cc",
575 ] 580 ]
576 581
577 deps += [ 582 deps += [
578 "//chromeos:media_perception_proto", 583 "//chromeos:media_perception_proto",
579 "//chromeos:test_support", 584 "//chromeos:test_support",
580 ] 585 ]
581 } 586 }
582 } 587 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698