| 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("features.gni") | 5 import("features.gni") |
| 6 import("//build/buildflag_header.gni") | 6 import("//build/buildflag_header.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "content_security_policy/csp_directive.h", | 95 "content_security_policy/csp_directive.h", |
| 96 "content_security_policy/csp_disposition_enum.h", | 96 "content_security_policy/csp_disposition_enum.h", |
| 97 "content_security_policy/csp_source.cc", | 97 "content_security_policy/csp_source.cc", |
| 98 "content_security_policy/csp_source.h", | 98 "content_security_policy/csp_source.h", |
| 99 "content_security_policy/csp_source_list.cc", | 99 "content_security_policy/csp_source_list.cc", |
| 100 "content_security_policy/csp_source_list.h", | 100 "content_security_policy/csp_source_list.h", |
| 101 "content_security_policy_header.cc", | 101 "content_security_policy_header.cc", |
| 102 "content_security_policy_header.h", | 102 "content_security_policy_header.h", |
| 103 "content_switches_internal.cc", | 103 "content_switches_internal.cc", |
| 104 "content_switches_internal.h", | 104 "content_switches_internal.h", |
| 105 "cookie_service_impl.cc", |
| 106 "cookie_service_impl.h", |
| 107 "cookies_traits.cc", |
| 108 "cookies_traits.h", |
| 105 "cross_site_document_classifier.cc", | 109 "cross_site_document_classifier.cc", |
| 106 "cross_site_document_classifier.h", | 110 "cross_site_document_classifier.h", |
| 107 "cursors/webcursor.cc", | 111 "cursors/webcursor.cc", |
| 108 "cursors/webcursor.h", | 112 "cursors/webcursor.h", |
| 109 "cursors/webcursor_android.cc", | 113 "cursors/webcursor_android.cc", |
| 110 "cursors/webcursor_aura.cc", | 114 "cursors/webcursor_aura.cc", |
| 111 "cursors/webcursor_aurawin.cc", | 115 "cursors/webcursor_aurawin.cc", |
| 112 "cursors/webcursor_aurax11.cc", | 116 "cursors/webcursor_aurax11.cc", |
| 113 "cursors/webcursor_mac.mm", | 117 "cursors/webcursor_mac.mm", |
| 114 "cursors/webcursor_ozone.cc", | 118 "cursors/webcursor_ozone.cc", |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 # This interface is internal to content. | 601 # This interface is internal to content. |
| 598 visibility = [ "//content/*" ] | 602 visibility = [ "//content/*" ] |
| 599 | 603 |
| 600 # indexed_db.mojom uses a native typemap that is not available in Java. | 604 # indexed_db.mojom uses a native typemap that is not available in Java. |
| 601 cpp_only = true | 605 cpp_only = true |
| 602 | 606 |
| 603 sources = [ | 607 sources = [ |
| 604 "associated_interfaces.mojom", | 608 "associated_interfaces.mojom", |
| 605 "child.mojom", | 609 "child.mojom", |
| 606 "child_memory_coordinator.mojom", | 610 "child_memory_coordinator.mojom", |
| 611 "cookies.mojom", |
| 607 "field_trial_recorder.mojom", | 612 "field_trial_recorder.mojom", |
| 608 "frame.mojom", | 613 "frame.mojom", |
| 609 "frame_sink_provider.mojom", | 614 "frame_sink_provider.mojom", |
| 610 "host_zoom.mojom", | 615 "host_zoom.mojom", |
| 611 "image_downloader/image_downloader.mojom", | 616 "image_downloader/image_downloader.mojom", |
| 612 "indexed_db/indexed_db.mojom", | 617 "indexed_db/indexed_db.mojom", |
| 613 "input/input_handler.mojom", | 618 "input/input_handler.mojom", |
| 614 "leveldb_wrapper.mojom", | 619 "leveldb_wrapper.mojom", |
| 615 "manifest_observer.mojom", | 620 "manifest_observer.mojom", |
| 616 "media/media_devices.mojom", | 621 "media/media_devices.mojom", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 "//ui/gfx/mojo", | 662 "//ui/gfx/mojo", |
| 658 "//url/mojo:url_mojom_gurl", | 663 "//url/mojo:url_mojom_gurl", |
| 659 "//url/mojo:url_mojom_origin", | 664 "//url/mojo:url_mojom_origin", |
| 660 ] | 665 ] |
| 661 | 666 |
| 662 component_output_prefix = "content_common_mojo_bindings" | 667 component_output_prefix = "content_common_mojo_bindings" |
| 663 export_class_attribute = "CONTENT_EXPORT" | 668 export_class_attribute = "CONTENT_EXPORT" |
| 664 export_define = "CONTENT_IMPLEMENTATION=1" | 669 export_define = "CONTENT_IMPLEMENTATION=1" |
| 665 export_header = "content/common/content_export.h" | 670 export_header = "content/common/content_export.h" |
| 666 } | 671 } |
| OLD | NEW |