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("//content/common/common.gni") | 7 import("//content/common/common.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 if (is_mac) { | 10 if (is_mac) { |
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 mojom("mojo_bindings") { | 529 mojom("mojo_bindings") { |
530 # This interface is internal to content. However, this is not exported from | 530 # This interface is internal to content. However, this is not exported from |
531 # the content component shared library. Code in content but outside of the | 531 # the content component shared library. Code in content but outside of the |
532 # content component (content/test or content/shell) should link to this | 532 # content component (content/test or content/shell) should link to this |
533 # directly. | 533 # directly. |
534 visibility = [ "//content/*" ] | 534 visibility = [ "//content/*" ] |
535 | 535 |
536 sources = [ | 536 sources = [ |
537 "application_setup.mojom", | 537 "application_setup.mojom", |
538 "background_sync_service.mojom", | 538 "background_sync_service.mojom", |
539 "geolocation_service.mojom", | |
540 "image_downloader/image_downloader.mojom", | 539 "image_downloader/image_downloader.mojom", |
541 "leveldb_wrapper.mojom", | 540 "leveldb_wrapper.mojom", |
542 "permission_service.mojom", | |
543 "presentation/presentation_service.mojom", | 541 "presentation/presentation_service.mojom", |
544 "process_control.mojom", | 542 "process_control.mojom", |
545 "render_frame_setup.mojom", | 543 "render_frame_setup.mojom", |
546 "render_widget_window_tree_client_factory.mojom", | 544 "render_widget_window_tree_client_factory.mojom", |
547 "service_port_service.mojom", | 545 "service_port_service.mojom", |
548 "service_worker/embedded_worker_setup.mojom", | 546 "service_worker/embedded_worker_setup.mojom", |
549 "storage_partition_service.mojom", | 547 "storage_partition_service.mojom", |
550 "vr_service.mojom", | 548 "vr_service.mojom", |
551 "wake_lock_service.mojom", | 549 "wake_lock_service.mojom", |
552 ] | 550 ] |
553 | 551 |
554 import_dirs = [ "//mojo/services" ] | 552 import_dirs = [ "//mojo/services" ] |
555 | 553 |
556 typemaps = [ "//url/mojo/origin.typemap" ] | 554 typemaps = [ "//url/mojo/origin.typemap" ] |
557 | 555 |
558 public_deps = [ | 556 public_deps = [ |
559 "//components/leveldb/public/interfaces", | 557 "//components/leveldb/public/interfaces", |
560 "//components/mus/public/interfaces", | 558 "//components/mus/public/interfaces", |
561 "//content/public/common:mojo_bindings", | 559 "//content/public/common:mojo_bindings", |
562 "//mojo/shell/public/interfaces", | 560 "//mojo/shell/public/interfaces", |
563 "//skia/public/interfaces", | 561 "//skia/public/interfaces", |
564 "//third_party/WebKit/public:mojo_bindings", | 562 "//third_party/WebKit/public:mojo_bindings", |
565 "//ui/mojo/geometry:interfaces", | 563 "//ui/mojo/geometry:interfaces", |
566 "//url/mojo:url_mojom_origin", | 564 "//url/mojo:url_mojom_origin", |
567 ] | 565 ] |
568 } | 566 } |
OLD | NEW |