| 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/color", | 120 "//ui/gfx/ipc/color", |
| 118 "//ui/gfx/ipc/geometry", | 121 "//ui/gfx/ipc/geometry", |
| 119 "//ui/gfx/ipc/skia", | 122 "//ui/gfx/ipc/skia", |
| 120 "//ui/surface", | 123 "//ui/surface", |
| 121 ] | 124 ] |
| 122 | 125 |
| 123 # //content/common needs to include public headers. | 126 # //content/common needs to include public headers. |
| 124 allow_circular_includes_from = [ "//content/common" ] | 127 allow_circular_includes_from = [ |
| 128 "//content/common", |
| 129 "//content/common:mojo_bindings_cpp_sources", |
| 130 ] |
| 125 | 131 |
| 126 if (!enable_plugins) { | 132 if (!enable_plugins) { |
| 127 sources -= [ | 133 sources -= [ |
| 128 "pepper_plugin_info.cc", | 134 "pepper_plugin_info.cc", |
| 129 "pepper_plugin_info.h", | 135 "pepper_plugin_info.h", |
| 130 ] | 136 ] |
| 131 } | 137 } |
| 132 | 138 |
| 133 if (enable_webrtc) { | 139 if (enable_webrtc) { |
| 134 sources += [ | 140 sources += [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 147 source_set("feature_h264_with_openh264_ffmpeg") { | 153 source_set("feature_h264_with_openh264_ffmpeg") { |
| 148 deps = [ | 154 deps = [ |
| 149 ":features", | 155 ":features", |
| 150 "//base", | 156 "//base", |
| 151 ] | 157 ] |
| 152 sources = [ | 158 sources = [ |
| 153 "feature_h264_with_openh264_ffmpeg.cc", | 159 "feature_h264_with_openh264_ffmpeg.cc", |
| 154 "feature_h264_with_openh264_ffmpeg.h", | 160 "feature_h264_with_openh264_ffmpeg.h", |
| 155 ] | 161 ] |
| 156 } | 162 } |
| OLD | NEW |