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

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

Issue 2352173004: Mojoify FetchEvent of Service Worker. (Closed)
Patch Set: incorporated dcheng's comment 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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 "image_downloader/image_downloader.mojom", 562 "image_downloader/image_downloader.mojom",
563 "leveldb_wrapper.mojom", 563 "leveldb_wrapper.mojom",
564 "memory_coordinator.mojom", 564 "memory_coordinator.mojom",
565 "native_types.mojom", 565 "native_types.mojom",
566 "render_frame_message_filter.mojom", 566 "render_frame_message_filter.mojom",
567 "render_message_filter.mojom", 567 "render_message_filter.mojom",
568 "render_widget_window_tree_client_factory.mojom", 568 "render_widget_window_tree_client_factory.mojom",
569 "renderer.mojom", 569 "renderer.mojom",
570 "service_worker/embedded_worker.mojom", 570 "service_worker/embedded_worker.mojom",
571 "service_worker/embedded_worker_setup.mojom", 571 "service_worker/embedded_worker_setup.mojom",
572 "service_worker/fetch_event_dispatcher.mojom",
572 "storage_partition_service.mojom", 573 "storage_partition_service.mojom",
573 "url_loader.mojom", 574 "url_loader.mojom",
574 "url_loader_factory.mojom", 575 "url_loader_factory.mojom",
575 ] 576 ]
576 577
577 import_dirs = [ "//mojo/services" ] 578 import_dirs = [ "//mojo/services" ]
578 579
579 public_deps = [ 580 public_deps = [
580 "//components/leveldb/public/interfaces", 581 "//components/leveldb/public/interfaces",
581 "//content/public/common:interfaces", 582 "//content/public/common:interfaces",
582 "//device/sensors/public/interfaces", 583 "//device/sensors/public/interfaces",
583 "//ipc:mojom", 584 "//ipc:mojom",
585 "//mojo/common:common_custom_types",
584 "//services/shell/public/interfaces", 586 "//services/shell/public/interfaces",
585 "//services/ui/public/interfaces", 587 "//services/ui/public/interfaces",
586 "//skia/public/interfaces", 588 "//skia/public/interfaces",
587 "//third_party/WebKit/public:mojo_bindings", 589 "//third_party/WebKit/public:mojo_bindings",
588 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", 590 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings",
589 "//ui/base/mojo:mojo_bindings", 591 "//ui/base/mojo:mojo_bindings",
590 "//ui/gfx/geometry/mojo", 592 "//ui/gfx/geometry/mojo",
591 "//ui/gfx/mojo", 593 "//ui/gfx/mojo",
592 "//url/mojo:url_mojom_gurl", 594 "//url/mojo:url_mojom_gurl",
593 "//url/mojo:url_mojom_origin", 595 "//url/mojo:url_mojom_origin",
594 ] 596 ]
595 597
596 export_class_attribute = "CONTENT_EXPORT" 598 export_class_attribute = "CONTENT_EXPORT"
597 export_define = "CONTENT_IMPLEMENTATION=1" 599 export_define = "CONTENT_IMPLEMENTATION=1"
598 export_header = "content/common/content_export.h" 600 export_header = "content/common/content_export.h"
599 } 601 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698