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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//content/common/common.gni") | 8 import("//content/common/common.gni") |
9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 import("//third_party/webrtc/build/webrtc.gni") | 10 import("//third_party/webrtc/build/webrtc.gni") |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 public_deps = [ | 95 public_deps = [ |
96 "//content/common", | 96 "//content/common", |
97 "//mojo/public/cpp/bindings", | 97 "//mojo/public/cpp/bindings", |
98 "//services/shell/public/interfaces", | 98 "//services/shell/public/interfaces", |
99 "//third_party/WebKit/public:blink_headers", | 99 "//third_party/WebKit/public:blink_headers", |
100 "//ui/accessibility", | 100 "//ui/accessibility", |
101 "//url/ipc:url_ipc", | 101 "//url/ipc:url_ipc", |
102 ] | 102 ] |
103 deps = [ | 103 deps = [ |
| 104 # This looks needless as we have //content/common in public_deps, but it's |
| 105 # needed because of allow_circular_includes_from. |
| 106 "//content/common:mojo_bindings_cpp_sources", |
104 "//ipc", | 107 "//ipc", |
105 "//media", | 108 "//media", |
106 "//mojo/common", | 109 "//mojo/common", |
107 "//net", | 110 "//net", |
108 "//ppapi/c", | 111 "//ppapi/c", |
109 "//services/shell/public/cpp", | 112 "//services/shell/public/cpp", |
110 "//skia", | 113 "//skia", |
111 "//storage/common", | 114 "//storage/common", |
112 "//third_party/icu", | 115 "//third_party/icu", |
113 "//ui/accessibility", | 116 "//ui/accessibility", |
114 "//ui/base", | 117 "//ui/base", |
115 "//ui/gfx", | 118 "//ui/gfx", |
116 "//ui/gfx/ipc", | 119 "//ui/gfx/ipc", |
117 "//ui/gfx/ipc/geometry", | 120 "//ui/gfx/ipc/geometry", |
118 "//ui/gfx/ipc/skia", | 121 "//ui/gfx/ipc/skia", |
119 "//ui/surface", | 122 "//ui/surface", |
120 ] | 123 ] |
121 | 124 |
122 # //content/common needs to include public headers. | 125 # //content/common needs to include public headers. |
123 allow_circular_includes_from = [ "//content/common" ] | 126 allow_circular_includes_from = [ |
| 127 "//content/common", |
| 128 "//content/common:mojo_bindings_cpp_sources", |
| 129 ] |
124 | 130 |
125 if (!enable_plugins) { | 131 if (!enable_plugins) { |
126 sources -= [ | 132 sources -= [ |
127 "pepper_plugin_info.cc", | 133 "pepper_plugin_info.cc", |
128 "pepper_plugin_info.h", | 134 "pepper_plugin_info.h", |
129 ] | 135 ] |
130 } | 136 } |
131 | 137 |
132 if (enable_webrtc) { | 138 if (enable_webrtc) { |
133 sources += [ | 139 sources += [ |
(...skipping 12 matching lines...) Expand all Loading... |
146 source_set("feature_h264_with_openh264_ffmpeg") { | 152 source_set("feature_h264_with_openh264_ffmpeg") { |
147 deps = [ | 153 deps = [ |
148 ":features", | 154 ":features", |
149 "//base", | 155 "//base", |
150 ] | 156 ] |
151 sources = [ | 157 sources = [ |
152 "feature_h264_with_openh264_ffmpeg.cc", | 158 "feature_h264_with_openh264_ffmpeg.cc", |
153 "feature_h264_with_openh264_ffmpeg.h", | 159 "feature_h264_with_openh264_ffmpeg.h", |
154 ] | 160 ] |
155 } | 161 } |
OLD | NEW |