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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 "content_security_policy/csp_directive.h", | 98 "content_security_policy/csp_directive.h", |
99 "content_security_policy/csp_disposition_enum.h", | 99 "content_security_policy/csp_disposition_enum.h", |
100 "content_security_policy/csp_source.cc", | 100 "content_security_policy/csp_source.cc", |
101 "content_security_policy/csp_source.h", | 101 "content_security_policy/csp_source.h", |
102 "content_security_policy/csp_source_list.cc", | 102 "content_security_policy/csp_source_list.cc", |
103 "content_security_policy/csp_source_list.h", | 103 "content_security_policy/csp_source_list.h", |
104 "content_security_policy_header.cc", | 104 "content_security_policy_header.cc", |
105 "content_security_policy_header.h", | 105 "content_security_policy_header.h", |
106 "content_switches_internal.cc", | 106 "content_switches_internal.cc", |
107 "content_switches_internal.h", | 107 "content_switches_internal.h", |
| 108 "cookie_service_impl.cc", |
| 109 "cookie_service_impl.h", |
| 110 "cookie_traits.cc", |
| 111 "cookie_traits.h", |
108 "cross_site_document_classifier.cc", | 112 "cross_site_document_classifier.cc", |
109 "cross_site_document_classifier.h", | 113 "cross_site_document_classifier.h", |
110 "cursors/webcursor.cc", | 114 "cursors/webcursor.cc", |
111 "cursors/webcursor.h", | 115 "cursors/webcursor.h", |
112 "cursors/webcursor_android.cc", | 116 "cursors/webcursor_android.cc", |
113 "cursors/webcursor_aura.cc", | 117 "cursors/webcursor_aura.cc", |
114 "cursors/webcursor_aurawin.cc", | 118 "cursors/webcursor_aurawin.cc", |
115 "cursors/webcursor_aurax11.cc", | 119 "cursors/webcursor_aurax11.cc", |
116 "cursors/webcursor_mac.mm", | 120 "cursors/webcursor_mac.mm", |
117 "cursors/webcursor_ozone.cc", | 121 "cursors/webcursor_ozone.cc", |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 # This interface is internal to content. | 590 # This interface is internal to content. |
587 visibility = [ "//content/*" ] | 591 visibility = [ "//content/*" ] |
588 | 592 |
589 # indexed_db.mojom uses a native typemap that is not available in Java. | 593 # indexed_db.mojom uses a native typemap that is not available in Java. |
590 cpp_only = true | 594 cpp_only = true |
591 | 595 |
592 sources = [ | 596 sources = [ |
593 "associated_interfaces.mojom", | 597 "associated_interfaces.mojom", |
594 "child.mojom", | 598 "child.mojom", |
595 "child_memory_coordinator.mojom", | 599 "child_memory_coordinator.mojom", |
| 600 "cookie.mojom", |
596 "field_trial_recorder.mojom", | 601 "field_trial_recorder.mojom", |
597 "frame.mojom", | 602 "frame.mojom", |
598 "frame_sink_provider.mojom", | 603 "frame_sink_provider.mojom", |
599 "host_zoom.mojom", | 604 "host_zoom.mojom", |
600 "image_downloader/image_downloader.mojom", | 605 "image_downloader/image_downloader.mojom", |
601 "indexed_db/indexed_db.mojom", | 606 "indexed_db/indexed_db.mojom", |
602 "input/input_handler.mojom", | 607 "input/input_handler.mojom", |
603 "leveldb_wrapper.mojom", | 608 "leveldb_wrapper.mojom", |
604 "manifest_observer.mojom", | 609 "manifest_observer.mojom", |
605 "media/media_devices.mojom", | 610 "media/media_devices.mojom", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
644 "//ui/gfx/mojo", | 649 "//ui/gfx/mojo", |
645 "//url/mojo:url_mojom_gurl", | 650 "//url/mojo:url_mojom_gurl", |
646 "//url/mojo:url_mojom_origin", | 651 "//url/mojo:url_mojom_origin", |
647 ] | 652 ] |
648 | 653 |
649 component_output_prefix = "content_common_mojo_bindings" | 654 component_output_prefix = "content_common_mojo_bindings" |
650 export_class_attribute = "CONTENT_EXPORT" | 655 export_class_attribute = "CONTENT_EXPORT" |
651 export_define = "CONTENT_IMPLEMENTATION=1" | 656 export_define = "CONTENT_IMPLEMENTATION=1" |
652 export_header = "content/common/content_export.h" | 657 export_header = "content/common/content_export.h" |
653 } | 658 } |
OLD | NEW |