| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 "pepper_file_util.cc", | 241 "pepper_file_util.cc", |
| 242 "pepper_file_util.h", | 242 "pepper_file_util.h", |
| 243 "pepper_plugin_list.cc", | 243 "pepper_plugin_list.cc", |
| 244 "pepper_plugin_list.h", | 244 "pepper_plugin_list.h", |
| 245 "pepper_renderer_instance_data.cc", | 245 "pepper_renderer_instance_data.cc", |
| 246 "pepper_renderer_instance_data.h", | 246 "pepper_renderer_instance_data.h", |
| 247 "platform_notification_messages.h", | 247 "platform_notification_messages.h", |
| 248 "plugin_list.cc", | 248 "plugin_list.cc", |
| 249 "plugin_list.h", | 249 "plugin_list.h", |
| 250 "process_type.cc", | 250 "process_type.cc", |
| 251 "push_messaging_messages.h", | |
| 252 "quarantine/quarantine.cc", | 251 "quarantine/quarantine.cc", |
| 253 "quarantine/quarantine_constants_linux.h", | 252 "quarantine/quarantine_constants_linux.h", |
| 254 "quarantine/quarantine_linux.cc", | 253 "quarantine/quarantine_linux.cc", |
| 255 "quarantine/quarantine_mac.mm", | 254 "quarantine/quarantine_mac.mm", |
| 256 "quarantine/quarantine_win.cc", | 255 "quarantine/quarantine_win.cc", |
| 257 "quota_messages.h", | 256 "quota_messages.h", |
| 258 "render_process_messages.h", | 257 "render_process_messages.h", |
| 259 "resize_params.cc", | 258 "resize_params.cc", |
| 260 "resize_params.h", | 259 "resize_params.h", |
| 261 "resource_messages.cc", | 260 "resource_messages.cc", |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 "associated_interfaces.mojom", | 579 "associated_interfaces.mojom", |
| 581 "child_memory_coordinator.mojom", | 580 "child_memory_coordinator.mojom", |
| 582 "frame.mojom", | 581 "frame.mojom", |
| 583 "host_zoom.mojom", | 582 "host_zoom.mojom", |
| 584 "image_downloader/image_downloader.mojom", | 583 "image_downloader/image_downloader.mojom", |
| 585 "indexed_db/indexed_db.mojom", | 584 "indexed_db/indexed_db.mojom", |
| 586 "leveldb_wrapper.mojom", | 585 "leveldb_wrapper.mojom", |
| 587 "media/media_devices.mojom", | 586 "media/media_devices.mojom", |
| 588 "memory_coordinator.mojom", | 587 "memory_coordinator.mojom", |
| 589 "native_types.mojom", | 588 "native_types.mojom", |
| 589 "push_messaging.mojom", |
| 590 "render_frame_message_filter.mojom", | 590 "render_frame_message_filter.mojom", |
| 591 "render_message_filter.mojom", | 591 "render_message_filter.mojom", |
| 592 "render_widget_window_tree_client_factory.mojom", | 592 "render_widget_window_tree_client_factory.mojom", |
| 593 "renderer.mojom", | 593 "renderer.mojom", |
| 594 "service_worker/embedded_worker.mojom", | 594 "service_worker/embedded_worker.mojom", |
| 595 "service_worker/service_worker.mojom", | 595 "service_worker/service_worker.mojom", |
| 596 "service_worker/service_worker_event_dispatcher.mojom", | 596 "service_worker/service_worker_event_dispatcher.mojom", |
| 597 "service_worker/service_worker_provider.mojom", | 597 "service_worker/service_worker_provider.mojom", |
| 598 "service_worker/service_worker_types.mojom", | 598 "service_worker/service_worker_types.mojom", |
| 599 "storage_partition_service.mojom", | 599 "storage_partition_service.mojom", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 626 "//url/mojo:url_mojom_origin", | 626 "//url/mojo:url_mojom_origin", |
| 627 ] | 627 ] |
| 628 | 628 |
| 629 overridden_deps = [ "//ipc:mojom" ] | 629 overridden_deps = [ "//ipc:mojom" ] |
| 630 component_deps = [ "//ipc" ] | 630 component_deps = [ "//ipc" ] |
| 631 | 631 |
| 632 export_class_attribute = "CONTENT_EXPORT" | 632 export_class_attribute = "CONTENT_EXPORT" |
| 633 export_define = "CONTENT_IMPLEMENTATION=1" | 633 export_define = "CONTENT_IMPLEMENTATION=1" |
| 634 export_header = "content/common/content_export.h" | 634 export_header = "content/common/content_export.h" |
| 635 } | 635 } |
| OLD | NEW |