| 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("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 "media/media_devices.mojom", | 569 "media/media_devices.mojom", |
| 570 "memory_coordinator.mojom", | 570 "memory_coordinator.mojom", |
| 571 "native_types.mojom", | 571 "native_types.mojom", |
| 572 "render_frame_message_filter.mojom", | 572 "render_frame_message_filter.mojom", |
| 573 "render_message_filter.mojom", | 573 "render_message_filter.mojom", |
| 574 "render_widget_window_tree_client_factory.mojom", | 574 "render_widget_window_tree_client_factory.mojom", |
| 575 "renderer.mojom", | 575 "renderer.mojom", |
| 576 "screen_orientation.mojom", | 576 "screen_orientation.mojom", |
| 577 "service_worker/embedded_worker.mojom", | 577 "service_worker/embedded_worker.mojom", |
| 578 "service_worker/embedded_worker_setup.mojom", | 578 "service_worker/embedded_worker_setup.mojom", |
| 579 "service_worker/fetch_event_dispatcher.mojom", | |
| 580 "service_worker/service_worker.mojom", | 579 "service_worker/service_worker.mojom", |
| 580 "service_worker/service_worker_event_dispatcher.mojom", |
| 581 "service_worker/service_worker_types.mojom", | 581 "service_worker/service_worker_types.mojom", |
| 582 "storage_partition_service.mojom", | 582 "storage_partition_service.mojom", |
| 583 "url_loader.mojom", | 583 "url_loader.mojom", |
| 584 "url_loader_factory.mojom", | 584 "url_loader_factory.mojom", |
| 585 "video_capture.mojom", | 585 "video_capture.mojom", |
| 586 ] | 586 ] |
| 587 | 587 |
| 588 import_dirs = [ "//mojo/services" ] | 588 import_dirs = [ "//mojo/services" ] |
| 589 | 589 |
| 590 public_deps = [ | 590 public_deps = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 609 "//ui/gfx/geometry/mojo", | 609 "//ui/gfx/geometry/mojo", |
| 610 "//ui/gfx/mojo", | 610 "//ui/gfx/mojo", |
| 611 "//url/mojo:url_mojom_gurl", | 611 "//url/mojo:url_mojom_gurl", |
| 612 "//url/mojo:url_mojom_origin", | 612 "//url/mojo:url_mojom_origin", |
| 613 ] | 613 ] |
| 614 | 614 |
| 615 export_class_attribute = "CONTENT_EXPORT" | 615 export_class_attribute = "CONTENT_EXPORT" |
| 616 export_define = "CONTENT_IMPLEMENTATION=1" | 616 export_define = "CONTENT_IMPLEMENTATION=1" |
| 617 export_header = "content/common/content_export.h" | 617 export_header = "content/common/content_export.h" |
| 618 } | 618 } |
| OLD | NEW |