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 "//net/base/network_change_notifier.h", |
13 "//third_party/WebKit/public/web/WebPopupType.h", | 13 "//third_party/WebKit/public/web/WebPopupType.h", |
14 ] | 14 ] |
15 traits_headers = [ | 15 traits_headers = [ |
16 "//content/common/frame_messages.h", | 16 "//content/common/frame_messages.h", |
17 "//content/common/view_messages.h", | 17 "//content/common/view_messages.h", |
18 "//content/public/common/common_param_traits.h", | 18 "//content/public/common/common_param_traits.h", |
19 ] | 19 ] |
20 public_deps = [ | 20 public_deps = [ |
21 # NOTE: These dependencies are here to satisfy gn check because | 21 # NOTE: These dependencies are here to satisfy gn check because |
22 # common_param_traits_macros.h and/or view_messages.h include their headers. | 22 # common_param_traits_macros.h and/or view_messages.h include their headers. |
23 # Although the mojo bindings target is configured to allow direct circular | 23 # Although the mojo bindings target is configured to allow direct circular |
24 # includes from //content/common and //content/public/common, this isn't a | 24 # includes from //content/common and //content/public/common, this isn't a |
25 # transitive allowance, so those targets' own public_deps aren't included in | 25 # transitive allowance, so those targets' own public_deps aren't included in |
26 # the set of implied dependencies. | 26 # the set of implied dependencies. |
27 "//cc/ipc", | 27 "//cc/ipc", |
| 28 "//content/common:features", |
28 "//media", | 29 "//media", |
29 "//media/base/ipc", | 30 "//media/base/ipc", |
30 "//net", | 31 "//net", |
31 "//ppapi/features", | 32 "//ppapi/features", |
32 "//ui/accessibility", | 33 "//ui/accessibility", |
33 "//ui/base/ime:text_input_types", | 34 "//ui/base/ime:text_input_types", |
34 "//ui/gfx/ipc", | 35 "//ui/gfx/ipc", |
35 "//ui/gfx/ipc/color", | 36 "//ui/gfx/ipc/color", |
36 "//ui/gfx/ipc/skia", | 37 "//ui/gfx/ipc/skia", |
37 "//ui/surface", | 38 "//ui/surface", |
38 "//url/ipc:url_ipc", | 39 "//url/ipc:url_ipc", |
39 ] | 40 ] |
40 type_mappings = [ | 41 type_mappings = [ |
41 "content.mojom.FrameOwnerProperties=content::FrameOwnerProperties", | 42 "content.mojom.FrameOwnerProperties=content::FrameOwnerProperties", |
42 "content.mojom.FrameReplicationState=content::FrameReplicationState", | 43 "content.mojom.FrameReplicationState=content::FrameReplicationState", |
43 "content.mojom.NetworkConnectionType=net::NetworkChangeNotifier::ConnectionTyp
e", | 44 "content.mojom.NetworkConnectionType=net::NetworkChangeNotifier::ConnectionTyp
e", |
44 "content.mojom.RendererPreferences=content::RendererPreferences", | 45 "content.mojom.RendererPreferences=content::RendererPreferences", |
45 "content.mojom.ResizeParams=content::ResizeParams", | 46 "content.mojom.ResizeParams=content::ResizeParams", |
46 "content.mojom.WebPopupType=blink::WebPopupType", | 47 "content.mojom.WebPopupType=blink::WebPopupType", |
47 "content.mojom.WebPreferences=content::WebPreferences", | 48 "content.mojom.WebPreferences=content::WebPreferences", |
48 ] | 49 ] |
OLD | NEW |