| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 public_deps = [ | 104 public_deps = [ |
| 105 "//content/common", | 105 "//content/common", |
| 106 "//mojo/public/cpp/bindings", | 106 "//mojo/public/cpp/bindings", |
| 107 "//services/shell/public/interfaces", | 107 "//services/shell/public/interfaces", |
| 108 "//third_party/WebKit/public:blink_headers", | 108 "//third_party/WebKit/public:blink_headers", |
| 109 "//ui/accessibility", | 109 "//ui/accessibility", |
| 110 "//url/ipc:url_ipc", | 110 "//url/ipc:url_ipc", |
| 111 ] | 111 ] |
| 112 deps = [ | 112 deps = [ |
| 113 # This looks needless as we have //content/common in public_deps, but it's |
| 114 # needed because of allow_circular_includes_from. |
| 115 "//content/common:mojo_bindings_cpp_sources", |
| 113 "//ipc", | 116 "//ipc", |
| 114 "//media", | 117 "//media", |
| 115 "//mojo/common", | 118 "//mojo/common", |
| 116 "//net", | 119 "//net", |
| 117 "//ppapi/c", | 120 "//ppapi/c", |
| 118 "//services/shell/public/cpp", | 121 "//services/shell/public/cpp", |
| 119 "//skia", | 122 "//skia", |
| 120 "//storage/common", | 123 "//storage/common", |
| 121 "//third_party/icu", | 124 "//third_party/icu", |
| 122 "//ui/accessibility", | 125 "//ui/accessibility", |
| 123 "//ui/base", | 126 "//ui/base", |
| 124 "//ui/gfx", | 127 "//ui/gfx", |
| 125 "//ui/gfx/ipc", | 128 "//ui/gfx/ipc", |
| 126 "//ui/gfx/ipc/color", | 129 "//ui/gfx/ipc/color", |
| 127 "//ui/gfx/ipc/geometry", | 130 "//ui/gfx/ipc/geometry", |
| 128 "//ui/gfx/ipc/skia", | 131 "//ui/gfx/ipc/skia", |
| 129 "//ui/surface", | 132 "//ui/surface", |
| 130 ] | 133 ] |
| 131 | 134 |
| 132 # //content/common needs to include public headers. | 135 # //content/common needs to include public headers. |
| 133 allow_circular_includes_from = [ "//content/common" ] | 136 allow_circular_includes_from = [ |
| 137 "//content/common", |
| 138 "//content/common:mojo_bindings_cpp_sources", |
| 139 ] |
| 134 | 140 |
| 135 if (!enable_plugins) { | 141 if (!enable_plugins) { |
| 136 sources -= [ | 142 sources -= [ |
| 137 "pepper_plugin_info.cc", | 143 "pepper_plugin_info.cc", |
| 138 "pepper_plugin_info.h", | 144 "pepper_plugin_info.h", |
| 139 ] | 145 ] |
| 140 } | 146 } |
| 141 | 147 |
| 142 if (enable_webrtc) { | 148 if (enable_webrtc) { |
| 143 sources += [ | 149 sources += [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 156 source_set("feature_h264_with_openh264_ffmpeg") { | 162 source_set("feature_h264_with_openh264_ffmpeg") { |
| 157 deps = [ | 163 deps = [ |
| 158 ":features", | 164 ":features", |
| 159 "//base", | 165 "//base", |
| 160 ] | 166 ] |
| 161 sources = [ | 167 sources = [ |
| 162 "feature_h264_with_openh264_ffmpeg.cc", | 168 "feature_h264_with_openh264_ffmpeg.cc", |
| 163 "feature_h264_with_openh264_ffmpeg.h", | 169 "feature_h264_with_openh264_ffmpeg.h", |
| 164 ] | 170 ] |
| 165 } | 171 } |
| OLD | NEW |