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("//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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 # This interface is internal to content. | 555 # This interface is internal to content. |
556 visibility = [ "//content/*" ] | 556 visibility = [ "//content/*" ] |
557 | 557 |
558 sources = [ | 558 sources = [ |
559 "associated_interfaces.mojom", | 559 "associated_interfaces.mojom", |
560 "child_memory_coordinator.mojom", | 560 "child_memory_coordinator.mojom", |
561 "frame.mojom", | 561 "frame.mojom", |
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 "render_frame_message_filter.mojom", | 566 "render_frame_message_filter.mojom", |
566 "render_message_filter.mojom", | 567 "render_message_filter.mojom", |
567 "render_widget_window_tree_client_factory.mojom", | 568 "render_widget_window_tree_client_factory.mojom", |
| 569 "renderer.mojom", |
568 "service_worker/embedded_worker.mojom", | 570 "service_worker/embedded_worker.mojom", |
569 "service_worker/embedded_worker_setup.mojom", | 571 "service_worker/embedded_worker_setup.mojom", |
570 "storage_partition_service.mojom", | 572 "storage_partition_service.mojom", |
571 "url_loader.mojom", | 573 "url_loader.mojom", |
572 "url_loader_factory.mojom", | 574 "url_loader_factory.mojom", |
573 ] | 575 ] |
574 | 576 |
575 import_dirs = [ "//mojo/services" ] | 577 import_dirs = [ "//mojo/services" ] |
576 | 578 |
577 public_deps = [ | 579 public_deps = [ |
578 "//components/leveldb/public/interfaces", | 580 "//components/leveldb/public/interfaces", |
579 "//content/public/common:interfaces", | 581 "//content/public/common:interfaces", |
580 "//device/sensors/public/interfaces", | 582 "//device/sensors/public/interfaces", |
| 583 "//ipc:mojom", |
581 "//services/shell/public/interfaces", | 584 "//services/shell/public/interfaces", |
582 "//services/ui/public/interfaces", | 585 "//services/ui/public/interfaces", |
583 "//skia/public/interfaces", | 586 "//skia/public/interfaces", |
584 "//third_party/WebKit/public:mojo_bindings", | 587 "//third_party/WebKit/public:mojo_bindings", |
585 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", | 588 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", |
586 "//ui/base/mojo:mojo_bindings", | 589 "//ui/base/mojo:mojo_bindings", |
587 "//ui/gfx/geometry/mojo", | 590 "//ui/gfx/geometry/mojo", |
| 591 "//ui/gfx/mojo", |
588 "//url/mojo:url_mojom_gurl", | 592 "//url/mojo:url_mojom_gurl", |
589 "//url/mojo:url_mojom_origin", | 593 "//url/mojo:url_mojom_origin", |
590 ] | 594 ] |
591 | 595 |
592 export_class_attribute = "CONTENT_EXPORT" | 596 export_class_attribute = "CONTENT_EXPORT" |
593 export_define = "CONTENT_IMPLEMENTATION=1" | 597 export_define = "CONTENT_IMPLEMENTATION=1" |
594 export_header = "content/common/content_export.h" | 598 export_header = "content/common/content_export.h" |
595 } | 599 } |
OLD | NEW |