| 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("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 "native_types.mojom", | 567 "native_types.mojom", |
| 568 "render_frame_message_filter.mojom", | 568 "render_frame_message_filter.mojom", |
| 569 "render_message_filter.mojom", | 569 "render_message_filter.mojom", |
| 570 "render_widget_window_tree_client_factory.mojom", | 570 "render_widget_window_tree_client_factory.mojom", |
| 571 "renderer.mojom", | 571 "renderer.mojom", |
| 572 "service_worker/embedded_worker.mojom", | 572 "service_worker/embedded_worker.mojom", |
| 573 "service_worker/embedded_worker_setup.mojom", | 573 "service_worker/embedded_worker_setup.mojom", |
| 574 "service_worker/fetch_event_dispatcher.mojom", | 574 "service_worker/fetch_event_dispatcher.mojom", |
| 575 "service_worker/service_worker.mojom", | 575 "service_worker/service_worker.mojom", |
| 576 "service_worker/service_worker_types.mojom", | 576 "service_worker/service_worker_types.mojom", |
| 577 "shared_memory_allocator.mojom", |
| 577 "storage_partition_service.mojom", | 578 "storage_partition_service.mojom", |
| 578 "url_loader.mojom", | 579 "url_loader.mojom", |
| 579 "url_loader_factory.mojom", | 580 "url_loader_factory.mojom", |
| 580 "video_capture.mojom", | 581 "video_capture.mojom", |
| 581 ] | 582 ] |
| 582 | 583 |
| 583 import_dirs = [ "//mojo/services" ] | 584 import_dirs = [ "//mojo/services" ] |
| 584 | 585 |
| 585 public_deps = [ | 586 public_deps = [ |
| 586 "//components/leveldb/public/interfaces", | 587 "//components/leveldb/public/interfaces", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 604 "//ui/gfx/geometry/mojo", | 605 "//ui/gfx/geometry/mojo", |
| 605 "//ui/gfx/mojo", | 606 "//ui/gfx/mojo", |
| 606 "//url/mojo:url_mojom_gurl", | 607 "//url/mojo:url_mojom_gurl", |
| 607 "//url/mojo:url_mojom_origin", | 608 "//url/mojo:url_mojom_origin", |
| 608 ] | 609 ] |
| 609 | 610 |
| 610 export_class_attribute = "CONTENT_EXPORT" | 611 export_class_attribute = "CONTENT_EXPORT" |
| 611 export_define = "CONTENT_IMPLEMENTATION=1" | 612 export_define = "CONTENT_IMPLEMENTATION=1" |
| 612 export_header = "content/common/content_export.h" | 613 export_header = "content/common/content_export.h" |
| 613 } | 614 } |
| OLD | NEW |