| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 # This interface is internal to content. | 598 # This interface is internal to content. |
| 595 visibility = [ "//content/*" ] | 599 visibility = [ "//content/*" ] |
| 596 | 600 |
| 597 # indexed_db.mojom uses a native typemap that is not available in Java. | 601 # indexed_db.mojom uses a native typemap that is not available in Java. |
| 598 cpp_only = true | 602 cpp_only = true |
| 599 | 603 |
| 600 sources = [ | 604 sources = [ |
| 601 "associated_interfaces.mojom", | 605 "associated_interfaces.mojom", |
| 602 "child.mojom", | 606 "child.mojom", |
| 603 "child_memory_coordinator.mojom", | 607 "child_memory_coordinator.mojom", |
| 608 "cookies.mojom", |
| 604 "field_trial_recorder.mojom", | 609 "field_trial_recorder.mojom", |
| 605 "frame.mojom", | 610 "frame.mojom", |
| 606 "frame_sink_provider.mojom", | 611 "frame_sink_provider.mojom", |
| 607 "host_zoom.mojom", | 612 "host_zoom.mojom", |
| 608 "image_downloader/image_downloader.mojom", | 613 "image_downloader/image_downloader.mojom", |
| 609 "indexed_db/indexed_db.mojom", | 614 "indexed_db/indexed_db.mojom", |
| 610 "input/input_handler.mojom", | 615 "input/input_handler.mojom", |
| 611 "leveldb_wrapper.mojom", | 616 "leveldb_wrapper.mojom", |
| 612 "manifest_observer.mojom", | 617 "manifest_observer.mojom", |
| 613 "media/media_devices.mojom", | 618 "media/media_devices.mojom", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 "//ui/gfx/mojo", | 660 "//ui/gfx/mojo", |
| 656 "//url/mojo:url_mojom_gurl", | 661 "//url/mojo:url_mojom_gurl", |
| 657 "//url/mojo:url_mojom_origin", | 662 "//url/mojo:url_mojom_origin", |
| 658 ] | 663 ] |
| 659 | 664 |
| 660 component_output_prefix = "content_common_mojo_bindings" | 665 component_output_prefix = "content_common_mojo_bindings" |
| 661 export_class_attribute = "CONTENT_EXPORT" | 666 export_class_attribute = "CONTENT_EXPORT" |
| 662 export_define = "CONTENT_IMPLEMENTATION=1" | 667 export_define = "CONTENT_IMPLEMENTATION=1" |
| 663 export_header = "content/common/content_export.h" | 668 export_header = "content/common/content_export.h" |
| 664 } | 669 } |
| OLD | NEW |