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

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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 # This interface is internal to content. 554 # This interface is internal to content.
555 visibility = [ "//content/*" ] 555 visibility = [ "//content/*" ]
556 556
557 sources = [ 557 sources = [
558 "associated_interfaces.mojom", 558 "associated_interfaces.mojom",
559 "child_memory_coordinator.mojom", 559 "child_memory_coordinator.mojom",
560 "frame.mojom", 560 "frame.mojom",
561 "image_downloader/image_downloader.mojom", 561 "image_downloader/image_downloader.mojom",
562 "leveldb_wrapper.mojom", 562 "leveldb_wrapper.mojom",
563 "memory_coordinator.mojom", 563 "memory_coordinator.mojom",
564 "native_types.mojom",
564 "render_frame_message_filter.mojom", 565 "render_frame_message_filter.mojom",
565 "render_message_filter.mojom", 566 "render_message_filter.mojom",
566 "render_widget_window_tree_client_factory.mojom", 567 "render_widget_window_tree_client_factory.mojom",
568 "renderer.mojom",
567 "service_worker/embedded_worker_setup.mojom", 569 "service_worker/embedded_worker_setup.mojom",
568 "storage_partition_service.mojom", 570 "storage_partition_service.mojom",
569 "url_loader.mojom", 571 "url_loader.mojom",
570 "url_loader_factory.mojom", 572 "url_loader_factory.mojom",
571 ] 573 ]
572 574
573 import_dirs = [ "//mojo/services" ] 575 import_dirs = [ "//mojo/services" ]
574 576
575 public_deps = [ 577 public_deps = [
576 "//components/leveldb/public/interfaces", 578 "//components/leveldb/public/interfaces",
577 "//content/public/common:interfaces", 579 "//content/public/common:interfaces",
578 "//device/sensors/public/interfaces", 580 "//device/sensors/public/interfaces",
581 "//ipc:mojom",
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

Powered by Google App Engine
This is Rietveld 408576698