| 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("//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("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//sandbox/features.gni") | 10 import("//sandbox/features.gni") |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 mojom("mojo_bindings") { | 572 mojom("mojo_bindings") { |
| 573 # This interface is internal to content. | 573 # This interface is internal to content. |
| 574 visibility = [ "//content/*" ] | 574 visibility = [ "//content/*" ] |
| 575 | 575 |
| 576 # indexed_db.mojom uses a native typemap that is not available in Java. | 576 # indexed_db.mojom uses a native typemap that is not available in Java. |
| 577 cpp_only = true | 577 cpp_only = true |
| 578 | 578 |
| 579 sources = [ | 579 sources = [ |
| 580 "associated_interfaces.mojom", | 580 "associated_interfaces.mojom", |
| 581 "child_memory_coordinator.mojom", | 581 "child_memory_coordinator.mojom", |
| 582 "field_trial_recorder.mojom", |
| 582 "frame.mojom", | 583 "frame.mojom", |
| 583 "host_zoom.mojom", | 584 "host_zoom.mojom", |
| 584 "image_downloader/image_downloader.mojom", | 585 "image_downloader/image_downloader.mojom", |
| 585 "indexed_db/indexed_db.mojom", | 586 "indexed_db/indexed_db.mojom", |
| 586 "leveldb_wrapper.mojom", | 587 "leveldb_wrapper.mojom", |
| 587 "media/media_devices.mojom", | 588 "media/media_devices.mojom", |
| 588 "memory_coordinator.mojom", | 589 "memory_coordinator.mojom", |
| 589 "native_types.mojom", | 590 "native_types.mojom", |
| 590 "push_messaging.mojom", | 591 "push_messaging.mojom", |
| 591 "render_frame_message_filter.mojom", | 592 "render_frame_message_filter.mojom", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 "//url/mojo:url_mojom_origin", | 629 "//url/mojo:url_mojom_origin", |
| 629 ] | 630 ] |
| 630 | 631 |
| 631 overridden_deps = [ "//ipc:mojom" ] | 632 overridden_deps = [ "//ipc:mojom" ] |
| 632 component_deps = [ "//ipc" ] | 633 component_deps = [ "//ipc" ] |
| 633 | 634 |
| 634 export_class_attribute = "CONTENT_EXPORT" | 635 export_class_attribute = "CONTENT_EXPORT" |
| 635 export_define = "CONTENT_IMPLEMENTATION=1" | 636 export_define = "CONTENT_IMPLEMENTATION=1" |
| 636 export_header = "content/common/content_export.h" | 637 export_header = "content/common/content_export.h" |
| 637 } | 638 } |
| OLD | NEW |