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

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

Issue 2391883006: Mojo-ify implementation of screen orientation locking/unlocking. (Closed)
Patch Set: Ensure correct ordering between ViewMsg_Resize and screen orientation messages 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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 } 550 }
551 551
552 mojom("mojo_bindings") { 552 mojom("mojo_bindings") {
553 # This interface is internal to content. 553 # This interface is internal to content.
554 visibility = [ "//content/*" ] 554 visibility = [ "//content/*" ]
555 555
556 # indexed_db.mojom uses a native typemap that is not available in Java. 556 # indexed_db.mojom uses a native typemap that is not available in Java.
557 cpp_only = true 557 cpp_only = true
558 558
559 sources = [ 559 sources = [
560 "//third_party/WebKit/public/platform/modules/screen_orientation/screen_orie ntation.mojom",
blundell 2016/10/21 18:16:31 Why is this built in //content/common and not in /
lunalu1 2016/10/24 16:57:36 Done.
560 "associated_interfaces.mojom", 561 "associated_interfaces.mojom",
561 "child_memory_coordinator.mojom", 562 "child_memory_coordinator.mojom",
562 "frame.mojom", 563 "frame.mojom",
563 "image_downloader/image_downloader.mojom", 564 "image_downloader/image_downloader.mojom",
564 "indexed_db/indexed_db.mojom", 565 "indexed_db/indexed_db.mojom",
565 "leveldb_wrapper.mojom", 566 "leveldb_wrapper.mojom",
566 "media/media_devices.mojom", 567 "media/media_devices.mojom",
567 "memory_coordinator.mojom", 568 "memory_coordinator.mojom",
568 "native_types.mojom", 569 "native_types.mojom",
569 "render_frame_message_filter.mojom", 570 "render_frame_message_filter.mojom",
570 "render_message_filter.mojom", 571 "render_message_filter.mojom",
571 "render_widget_window_tree_client_factory.mojom", 572 "render_widget_window_tree_client_factory.mojom",
572 "renderer.mojom", 573 "renderer.mojom",
574 "screen_orientation_interface.mojom",
573 "service_worker/embedded_worker.mojom", 575 "service_worker/embedded_worker.mojom",
574 "service_worker/embedded_worker_setup.mojom", 576 "service_worker/embedded_worker_setup.mojom",
575 "service_worker/fetch_event_dispatcher.mojom", 577 "service_worker/fetch_event_dispatcher.mojom",
576 "service_worker/service_worker.mojom", 578 "service_worker/service_worker.mojom",
577 "service_worker/service_worker_types.mojom", 579 "service_worker/service_worker_types.mojom",
578 "storage_partition_service.mojom", 580 "storage_partition_service.mojom",
579 "url_loader.mojom", 581 "url_loader.mojom",
580 "url_loader_factory.mojom", 582 "url_loader_factory.mojom",
581 "video_capture.mojom", 583 "video_capture.mojom",
582 ] 584 ]
(...skipping 20 matching lines...) Expand all
603 "//ui/gfx/geometry/mojo", 605 "//ui/gfx/geometry/mojo",
604 "//ui/gfx/mojo", 606 "//ui/gfx/mojo",
605 "//url/mojo:url_mojom_gurl", 607 "//url/mojo:url_mojom_gurl",
606 "//url/mojo:url_mojom_origin", 608 "//url/mojo:url_mojom_origin",
607 ] 609 ]
608 610
609 export_class_attribute = "CONTENT_EXPORT" 611 export_class_attribute = "CONTENT_EXPORT"
610 export_define = "CONTENT_IMPLEMENTATION=1" 612 export_define = "CONTENT_IMPLEMENTATION=1"
611 export_header = "content/common/content_export.h" 613 export_header = "content/common/content_export.h"
612 } 614 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698