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

Side by Side Diff: content/common/BUILD.gn

Issue 2374353002: Revert "Revert of ServiceWorker: Implement StartWorker by using mojo (patchset #1 id:1 of https://c… (Closed)
Patch Set: Created 4 years, 2 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("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 "sandbox_win.h", 299 "sandbox_win.h",
300 "savable_subframe.h", 300 "savable_subframe.h",
301 "savable_url_schemes.cc", 301 "savable_url_schemes.cc",
302 "savable_url_schemes.h", 302 "savable_url_schemes.h",
303 "screen_orientation_messages.h", 303 "screen_orientation_messages.h",
304 "security_style_util.cc", 304 "security_style_util.cc",
305 "security_style_util.h", 305 "security_style_util.h",
306 "send_zygote_child_ping_linux.cc", 306 "send_zygote_child_ping_linux.cc",
307 "service_worker/embedded_worker_messages.h", 307 "service_worker/embedded_worker_messages.h",
308 "service_worker/embedded_worker_settings.h", 308 "service_worker/embedded_worker_settings.h",
309 "service_worker/embedded_worker_start_params.cc",
310 "service_worker/embedded_worker_start_params.h",
309 "service_worker/service_worker_client_info.cc", 311 "service_worker/service_worker_client_info.cc",
310 "service_worker/service_worker_client_info.h", 312 "service_worker/service_worker_client_info.h",
311 "service_worker/service_worker_messages.h", 313 "service_worker/service_worker_messages.h",
312 "service_worker/service_worker_status_code.cc", 314 "service_worker/service_worker_status_code.cc",
313 "service_worker/service_worker_status_code.h", 315 "service_worker/service_worker_status_code.h",
314 "service_worker/service_worker_type_converters.cc", 316 "service_worker/service_worker_type_converters.cc",
315 "service_worker/service_worker_type_converters.h", 317 "service_worker/service_worker_type_converters.h",
316 "service_worker/service_worker_types.cc", 318 "service_worker/service_worker_types.cc",
317 "service_worker/service_worker_types.h", 319 "service_worker/service_worker_types.h",
318 "service_worker/service_worker_utils.cc", 320 "service_worker/service_worker_utils.cc",
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 sources = [ 559 sources = [
558 "associated_interfaces.mojom", 560 "associated_interfaces.mojom",
559 "child_memory_coordinator.mojom", 561 "child_memory_coordinator.mojom",
560 "frame.mojom", 562 "frame.mojom",
561 "image_downloader/image_downloader.mojom", 563 "image_downloader/image_downloader.mojom",
562 "leveldb_wrapper.mojom", 564 "leveldb_wrapper.mojom",
563 "memory_coordinator.mojom", 565 "memory_coordinator.mojom",
564 "render_frame_message_filter.mojom", 566 "render_frame_message_filter.mojom",
565 "render_message_filter.mojom", 567 "render_message_filter.mojom",
566 "render_widget_window_tree_client_factory.mojom", 568 "render_widget_window_tree_client_factory.mojom",
569 "service_worker/embedded_worker.mojom",
567 "service_worker/embedded_worker_setup.mojom", 570 "service_worker/embedded_worker_setup.mojom",
568 "storage_partition_service.mojom", 571 "storage_partition_service.mojom",
569 "url_loader.mojom", 572 "url_loader.mojom",
570 "url_loader_factory.mojom", 573 "url_loader_factory.mojom",
571 ] 574 ]
572 575
573 import_dirs = [ "//mojo/services" ] 576 import_dirs = [ "//mojo/services" ]
574 577
575 public_deps = [ 578 public_deps = [
576 "//components/leveldb/public/interfaces", 579 "//components/leveldb/public/interfaces",
577 "//content/public/common:interfaces", 580 "//content/public/common:interfaces",
578 "//device/sensors/public/interfaces", 581 "//device/sensors/public/interfaces",
579 "//services/shell/public/interfaces", 582 "//services/shell/public/interfaces",
580 "//services/ui/public/interfaces", 583 "//services/ui/public/interfaces",
581 "//skia/public/interfaces", 584 "//skia/public/interfaces",
582 "//third_party/WebKit/public:mojo_bindings", 585 "//third_party/WebKit/public:mojo_bindings",
583 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", 586 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings",
584 "//ui/base/mojo:mojo_bindings", 587 "//ui/base/mojo:mojo_bindings",
585 "//ui/gfx/geometry/mojo", 588 "//ui/gfx/geometry/mojo",
586 "//url/mojo:url_mojom_gurl", 589 "//url/mojo:url_mojom_gurl",
587 "//url/mojo:url_mojom_origin", 590 "//url/mojo:url_mojom_origin",
588 ] 591 ]
589 592
590 export_class_attribute = "CONTENT_EXPORT" 593 export_class_attribute = "CONTENT_EXPORT"
591 export_define = "CONTENT_IMPLEMENTATION=1" 594 export_define = "CONTENT_IMPLEMENTATION=1"
592 export_header = "content/common/content_export.h" 595 export_header = "content/common/content_export.h"
593 } 596 }
OLDNEW
« no previous file with comments | « content/browser/service_worker/service_worker_version.cc ('k') | content/common/service_worker/embedded_worker.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698