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

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

Issue 2352173004: Mojoify FetchEvent of Service Worker. (Closed)
Patch Set: Use EnumTraits 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 "security_style_util.cc", 302 "security_style_util.cc",
303 "security_style_util.h", 303 "security_style_util.h",
304 "send_zygote_child_ping_linux.cc", 304 "send_zygote_child_ping_linux.cc",
305 "service_worker/embedded_worker_messages.h", 305 "service_worker/embedded_worker_messages.h",
306 "service_worker/embedded_worker_settings.h", 306 "service_worker/embedded_worker_settings.h",
307 "service_worker/service_worker_client_info.cc", 307 "service_worker/service_worker_client_info.cc",
308 "service_worker/service_worker_client_info.h", 308 "service_worker/service_worker_client_info.h",
309 "service_worker/service_worker_messages.h", 309 "service_worker/service_worker_messages.h",
310 "service_worker/service_worker_status_code.cc", 310 "service_worker/service_worker_status_code.cc",
311 "service_worker/service_worker_status_code.h", 311 "service_worker/service_worker_status_code.h",
312 "service_worker/service_worker_status_code_traits.cc",
313 "service_worker/service_worker_status_code_traits.h",
shimazu 2016/09/27 01:01:07 I think we can remove these two lines from here be
horo 2016/09/27 02:11:39 Done.
312 "service_worker/service_worker_type_converters.cc", 314 "service_worker/service_worker_type_converters.cc",
313 "service_worker/service_worker_type_converters.h", 315 "service_worker/service_worker_type_converters.h",
314 "service_worker/service_worker_types.cc", 316 "service_worker/service_worker_types.cc",
315 "service_worker/service_worker_types.h", 317 "service_worker/service_worker_types.h",
316 "service_worker/service_worker_utils.cc", 318 "service_worker/service_worker_utils.cc",
317 "service_worker/service_worker_utils.h", 319 "service_worker/service_worker_utils.h",
318 "set_process_title.cc", 320 "set_process_title.cc",
319 "set_process_title.h", 321 "set_process_title.h",
320 "set_process_title_linux.cc", 322 "set_process_title_linux.cc",
321 "set_process_title_linux.h", 323 "set_process_title_linux.h",
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 "associated_interfaces.mojom", 558 "associated_interfaces.mojom",
557 "child_memory_coordinator.mojom", 559 "child_memory_coordinator.mojom",
558 "frame.mojom", 560 "frame.mojom",
559 "image_downloader/image_downloader.mojom", 561 "image_downloader/image_downloader.mojom",
560 "leveldb_wrapper.mojom", 562 "leveldb_wrapper.mojom",
561 "memory_coordinator.mojom", 563 "memory_coordinator.mojom",
562 "render_frame_message_filter.mojom", 564 "render_frame_message_filter.mojom",
563 "render_message_filter.mojom", 565 "render_message_filter.mojom",
564 "render_widget_window_tree_client_factory.mojom", 566 "render_widget_window_tree_client_factory.mojom",
565 "service_worker/embedded_worker_setup.mojom", 567 "service_worker/embedded_worker_setup.mojom",
568 "service_worker/fetch_event_dispatcher.mojom",
566 "storage_partition_service.mojom", 569 "storage_partition_service.mojom",
567 "url_loader.mojom", 570 "url_loader.mojom",
568 "url_loader_factory.mojom", 571 "url_loader_factory.mojom",
569 ] 572 ]
570 573
571 import_dirs = [ "//mojo/services" ] 574 import_dirs = [ "//mojo/services" ]
572 575
573 public_deps = [ 576 public_deps = [
574 "//components/leveldb/public/interfaces", 577 "//components/leveldb/public/interfaces",
575 "//device/sensors/public/interfaces", 578 "//device/sensors/public/interfaces",
576 "//device/time_zone_monitor/public/interfaces", 579 "//device/time_zone_monitor/public/interfaces",
580 "//mojo/common:common_custom_types",
577 "//services/shell/public/interfaces", 581 "//services/shell/public/interfaces",
578 "//services/ui/public/interfaces", 582 "//services/ui/public/interfaces",
579 "//skia/public/interfaces", 583 "//skia/public/interfaces",
580 "//third_party/WebKit/public:mojo_bindings", 584 "//third_party/WebKit/public:mojo_bindings",
581 "//ui/gfx/geometry/mojo", 585 "//ui/gfx/geometry/mojo",
582 "//url/mojo:url_mojom_gurl", 586 "//url/mojo:url_mojom_gurl",
583 "//url/mojo:url_mojom_origin", 587 "//url/mojo:url_mojom_origin",
584 ] 588 ]
585 589
586 export_class_attribute = "CONTENT_EXPORT" 590 export_class_attribute = "CONTENT_EXPORT"
587 export_define = "CONTENT_IMPLEMENTATION=1" 591 export_define = "CONTENT_IMPLEMENTATION=1"
588 export_header = "content/common/content_export.h" 592 export_header = "content/common/content_export.h"
589 } 593 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698