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

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

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

Powered by Google App Engine
This is Rietveld 408576698