| 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 "native_types.mojom", | 570 "native_types.mojom", |
| 571 "render_frame_message_filter.mojom", | 571 "render_frame_message_filter.mojom", |
| 572 "render_message_filter.mojom", | 572 "render_message_filter.mojom", |
| 573 "render_widget_window_tree_client_factory.mojom", | 573 "render_widget_window_tree_client_factory.mojom", |
| 574 "renderer.mojom", | 574 "renderer.mojom", |
| 575 "service_worker/embedded_worker.mojom", | 575 "service_worker/embedded_worker.mojom", |
| 576 "service_worker/embedded_worker_setup.mojom", | 576 "service_worker/embedded_worker_setup.mojom", |
| 577 "service_worker/service_worker.mojom", | 577 "service_worker/service_worker.mojom", |
| 578 "service_worker/service_worker_event_dispatcher.mojom", | 578 "service_worker/service_worker_event_dispatcher.mojom", |
| 579 "service_worker/service_worker_types.mojom", | 579 "service_worker/service_worker_types.mojom", |
| 580 "shared_worker.mojom", |
| 580 "storage_partition_service.mojom", | 581 "storage_partition_service.mojom", |
| 581 "url_loader.mojom", | 582 "url_loader.mojom", |
| 582 "url_loader_factory.mojom", | 583 "url_loader_factory.mojom", |
| 583 "video_capture.mojom", | 584 "video_capture.mojom", |
| 584 ] | 585 ] |
| 585 | 586 |
| 586 import_dirs = [ "//mojo/services" ] | 587 import_dirs = [ "//mojo/services" ] |
| 587 | 588 |
| 588 public_deps = [ | 589 public_deps = [ |
| 589 "//components/leveldb/public/interfaces", | 590 "//components/leveldb/public/interfaces", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 606 "//ui/gfx/geometry/mojo", | 607 "//ui/gfx/geometry/mojo", |
| 607 "//ui/gfx/mojo", | 608 "//ui/gfx/mojo", |
| 608 "//url/mojo:url_mojom_gurl", | 609 "//url/mojo:url_mojom_gurl", |
| 609 "//url/mojo:url_mojom_origin", | 610 "//url/mojo:url_mojom_origin", |
| 610 ] | 611 ] |
| 611 | 612 |
| 612 export_class_attribute = "CONTENT_EXPORT" | 613 export_class_attribute = "CONTENT_EXPORT" |
| 613 export_define = "CONTENT_IMPLEMENTATION=1" | 614 export_define = "CONTENT_IMPLEMENTATION=1" |
| 614 export_header = "content/common/content_export.h" | 615 export_header = "content/common/content_export.h" |
| 615 } | 616 } |
| OLD | NEW |