| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 "render_frame_message_filter.mojom", | 557 "render_frame_message_filter.mojom", |
| 558 "render_widget_window_tree_client_factory.mojom", | 558 "render_widget_window_tree_client_factory.mojom", |
| 559 "service_worker/embedded_worker_setup.mojom", | 559 "service_worker/embedded_worker_setup.mojom", |
| 560 "storage_partition_service.mojom", | 560 "storage_partition_service.mojom", |
| 561 "url_loader.mojom", | 561 "url_loader.mojom", |
| 562 "url_loader_factory.mojom", | 562 "url_loader_factory.mojom", |
| 563 ] | 563 ] |
| 564 | 564 |
| 565 import_dirs = [ "//mojo/services" ] | 565 import_dirs = [ "//mojo/services" ] |
| 566 | 566 |
| 567 deps = [ |
| 568 "//media/mojo/interfaces", |
| 569 ] |
| 570 |
| 567 public_deps = [ | 571 public_deps = [ |
| 568 "//components/leveldb/public/interfaces", | 572 "//components/leveldb/public/interfaces", |
| 569 "//device/sensors/public/interfaces", | 573 "//device/sensors/public/interfaces", |
| 570 "//services/shell/public/interfaces", | 574 "//services/shell/public/interfaces", |
| 571 "//services/ui/public/interfaces", | 575 "//services/ui/public/interfaces", |
| 572 "//skia/public/interfaces", | 576 "//skia/public/interfaces", |
| 573 "//third_party/WebKit/public:mojo_bindings", | 577 "//third_party/WebKit/public:mojo_bindings", |
| 574 "//ui/gfx/geometry/mojo", | 578 "//ui/gfx/geometry/mojo", |
| 575 "//url/mojo:url_mojom_gurl", | 579 "//url/mojo:url_mojom_gurl", |
| 576 "//url/mojo:url_mojom_origin", | 580 "//url/mojo:url_mojom_origin", |
| 577 ] | 581 ] |
| 578 | 582 |
| 579 export_class_attribute = "CONTENT_EXPORT" | 583 export_class_attribute = "CONTENT_EXPORT" |
| 580 export_define = "CONTENT_IMPLEMENTATION=1" | 584 export_define = "CONTENT_IMPLEMENTATION=1" |
| 581 export_header = "content/common/content_export.h" | 585 export_header = "content/common/content_export.h" |
| 582 } | 586 } |
| OLD | NEW |