| 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("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 sources = [ | 247 sources = [ |
| 248 "frame.mojom", | 248 "frame.mojom", |
| 249 "image_downloader/image_downloader.mojom", | 249 "image_downloader/image_downloader.mojom", |
| 250 "leveldb_wrapper.mojom", | 250 "leveldb_wrapper.mojom", |
| 251 "render_frame_message_filter.mojom", | 251 "render_frame_message_filter.mojom", |
| 252 "render_widget_window_tree_client_factory.mojom", | 252 "render_widget_window_tree_client_factory.mojom", |
| 253 "service_worker/embedded_worker_setup.mojom", | 253 "service_worker/embedded_worker_setup.mojom", |
| 254 "storage_partition_service.mojom", | 254 "storage_partition_service.mojom", |
| 255 "url_loader.mojom", | 255 "url_loader.mojom", |
| 256 "url_loader_factory.mojom", | 256 "url_loader_factory.mojom", |
| 257 "websocket.mojom", |
| 257 ] | 258 ] |
| 258 | 259 |
| 259 import_dirs = [ "//mojo/services" ] | 260 import_dirs = [ "//mojo/services" ] |
| 260 | 261 |
| 261 public_deps = [ | 262 public_deps = [ |
| 262 "//components/leveldb/public/interfaces", | 263 "//components/leveldb/public/interfaces", |
| 263 "//device/sensors/public/interfaces", | 264 "//device/sensors/public/interfaces", |
| 264 "//services/shell/public/interfaces", | 265 "//services/shell/public/interfaces", |
| 265 "//services/ui/public/interfaces", | 266 "//services/ui/public/interfaces", |
| 266 "//skia/public/interfaces", | 267 "//skia/public/interfaces", |
| 267 "//third_party/WebKit/public:mojo_bindings", | 268 "//third_party/WebKit/public:mojo_bindings", |
| 268 "//ui/gfx/geometry/mojo", | 269 "//ui/gfx/geometry/mojo", |
| 269 "//url/mojo:url_mojom_gurl", | 270 "//url/mojo:url_mojom_gurl", |
| 270 "//url/mojo:url_mojom_origin", | 271 "//url/mojo:url_mojom_origin", |
| 271 ] | 272 ] |
| 272 | 273 |
| 273 export_class_attribute = "CONTENT_EXPORT" | 274 export_class_attribute = "CONTENT_EXPORT" |
| 274 export_define = "CONTENT_IMPLEMENTATION=1" | 275 export_define = "CONTENT_IMPLEMENTATION=1" |
| 275 export_header = "content/common/content_export.h" | 276 export_header = "content/common/content_export.h" |
| 276 } | 277 } |
| OLD | NEW |