OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 mojom = "//content/common/native_types.mojom" | 5 mojom = "//content/common/native_types.mojom" |
6 public_headers = [ | 6 public_headers = [ |
7 "//content/common/frame_owner_properties.h", | 7 "//content/common/frame_owner_properties.h", |
8 "//content/common/frame_replication_state.h", | 8 "//content/common/frame_replication_state.h", |
9 "//content/common/resize_params.h", | 9 "//content/common/resize_params.h", |
10 "//content/public/common/renderer_preferences.h", | 10 "//content/public/common/renderer_preferences.h", |
11 "//content/public/common/web_preferences.h", | 11 "//content/public/common/web_preferences.h", |
| 12 "//net/base/network_change_notifier.h", |
12 ] | 13 ] |
13 traits_headers = [ | 14 traits_headers = [ |
14 "//content/common/frame_messages.h", | 15 "//content/common/frame_messages.h", |
15 "//content/common/view_messages.h", | 16 "//content/common/view_messages.h", |
16 "//content/public/common/common_param_traits.h", | 17 "//content/public/common/common_param_traits.h", |
17 ] | 18 ] |
18 public_deps = [ | 19 public_deps = [ |
19 # NOTE: These dependencies are here to satisfy gn check because | 20 # NOTE: These dependencies are here to satisfy gn check because |
20 # common_param_traits_macros.h and/or view_messages.h include their headers. | 21 # common_param_traits_macros.h and/or view_messages.h include their headers. |
21 # Although the mojo bindings target is configured to allow direct circular | 22 # Although the mojo bindings target is configured to allow direct circular |
22 # includes from //content/common and //content/public/common, this isn't a | 23 # includes from //content/common and //content/public/common, this isn't a |
23 # transitive allowance, so those targets' own public_deps aren't included in | 24 # transitive allowance, so those targets' own public_deps aren't included in |
24 # the set of implied dependencies. | 25 # the set of implied dependencies. |
25 "//cc/ipc", | 26 "//cc/ipc", |
26 "//media", | 27 "//media", |
27 "//media/base/ipc", | 28 "//media/base/ipc", |
| 29 "//net", |
28 "//ui/accessibility", | 30 "//ui/accessibility", |
29 "//ui/base/ime:text_input_types", | 31 "//ui/base/ime:text_input_types", |
30 "//ui/gfx/ipc", | 32 "//ui/gfx/ipc", |
31 "//ui/gfx/ipc/color", | 33 "//ui/gfx/ipc/color", |
32 "//ui/gfx/ipc/skia", | 34 "//ui/gfx/ipc/skia", |
33 "//ui/surface", | 35 "//ui/surface", |
34 "//url/ipc:url_ipc", | 36 "//url/ipc:url_ipc", |
35 ] | 37 ] |
36 type_mappings = [ | 38 type_mappings = [ |
37 "content.mojom.FrameOwnerProperties=content::FrameOwnerProperties", | 39 "content.mojom.FrameOwnerProperties=content::FrameOwnerProperties", |
38 "content.mojom.FrameReplicationState=content::FrameReplicationState", | 40 "content.mojom.FrameReplicationState=content::FrameReplicationState", |
| 41 "content.mojom.NetworkConnectionType=net::NetworkChangeNotifier::ConnectionTyp
e", |
39 "content.mojom.RendererPreferences=content::RendererPreferences", | 42 "content.mojom.RendererPreferences=content::RendererPreferences", |
40 "content.mojom.ResizeParams=content::ResizeParams", | 43 "content.mojom.ResizeParams=content::ResizeParams", |
41 "content.mojom.WebPreferences=content::WebPreferences", | 44 "content.mojom.WebPreferences=content::WebPreferences", |
42 ] | 45 ] |
OLD | NEW |