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