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", |
(...skipping 10 matching lines...) Expand all Loading... |
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 "//media", | 28 "//media", |
29 "//media/base/ipc", | 29 "//media/base/ipc", |
30 "//net", | 30 "//net", |
| 31 "//ppapi/features", |
31 "//ui/accessibility", | 32 "//ui/accessibility", |
32 "//ui/base/ime:text_input_types", | 33 "//ui/base/ime:text_input_types", |
33 "//ui/gfx/ipc", | 34 "//ui/gfx/ipc", |
34 "//ui/gfx/ipc/color", | 35 "//ui/gfx/ipc/color", |
35 "//ui/gfx/ipc/skia", | 36 "//ui/gfx/ipc/skia", |
36 "//ui/surface", | 37 "//ui/surface", |
37 "//url/ipc:url_ipc", | 38 "//url/ipc:url_ipc", |
38 ] | 39 ] |
39 type_mappings = [ | 40 type_mappings = [ |
40 "content.mojom.FrameOwnerProperties=content::FrameOwnerProperties", | 41 "content.mojom.FrameOwnerProperties=content::FrameOwnerProperties", |
41 "content.mojom.FrameReplicationState=content::FrameReplicationState", | 42 "content.mojom.FrameReplicationState=content::FrameReplicationState", |
42 "content.mojom.NetworkConnectionType=net::NetworkChangeNotifier::ConnectionTyp
e", | 43 "content.mojom.NetworkConnectionType=net::NetworkChangeNotifier::ConnectionTyp
e", |
43 "content.mojom.RendererPreferences=content::RendererPreferences", | 44 "content.mojom.RendererPreferences=content::RendererPreferences", |
44 "content.mojom.ResizeParams=content::ResizeParams", | 45 "content.mojom.ResizeParams=content::ResizeParams", |
45 "content.mojom.WebPopupType=blink::WebPopupType", | 46 "content.mojom.WebPopupType=blink::WebPopupType", |
46 "content.mojom.WebPreferences=content::WebPreferences", | 47 "content.mojom.WebPreferences=content::WebPreferences", |
47 ] | 48 ] |
OLD | NEW |