| 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("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//third_party/webrtc/build/webrtc.gni") | 9 import("//third_party/webrtc/build/webrtc.gni") |
| 10 | 10 |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 225 |
| 226 configs += [ | 226 configs += [ |
| 227 "//build/config:precompiled_headers", | 227 "//build/config:precompiled_headers", |
| 228 "//content:content_implementation", | 228 "//content:content_implementation", |
| 229 ] | 229 ] |
| 230 | 230 |
| 231 public_configs = [ "//v8:external_startup_data" ] | 231 public_configs = [ "//v8:external_startup_data" ] |
| 232 | 232 |
| 233 public_deps = [ | 233 public_deps = [ |
| 234 "//content/common", | 234 "//content/common", |
| 235 "//content/public/common:interfaces", |
| 235 "//mojo/public/cpp/bindings", | 236 "//mojo/public/cpp/bindings", |
| 236 "//services/shell/public/cpp", | 237 "//services/shell/public/cpp", |
| 237 "//services/shell/public/interfaces", | 238 "//services/shell/public/interfaces", |
| 238 "//third_party/WebKit/public:blink_headers", | 239 "//third_party/WebKit/public:blink_headers", |
| 239 "//ui/accessibility", | 240 "//ui/accessibility", |
| 240 "//url/ipc:url_ipc", | 241 "//url/ipc:url_ipc", |
| 241 ] | 242 ] |
| 242 deps = [ | 243 deps = [ |
| 243 # This looks needless as we have //content/common in public_deps, but it's | 244 # This looks needless as we have //content/common in public_deps, but it's |
| 244 # needed because of allow_circular_includes_from. | 245 # needed because of allow_circular_includes_from. |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 source_set("feature_h264_with_openh264_ffmpeg") { | 293 source_set("feature_h264_with_openh264_ffmpeg") { |
| 293 deps = [ | 294 deps = [ |
| 294 ":features", | 295 ":features", |
| 295 "//base", | 296 "//base", |
| 296 ] | 297 ] |
| 297 sources = [ | 298 sources = [ |
| 298 "feature_h264_with_openh264_ffmpeg.cc", | 299 "feature_h264_with_openh264_ffmpeg.cc", |
| 299 "feature_h264_with_openh264_ffmpeg.h", | 300 "feature_h264_with_openh264_ffmpeg.h", |
| 300 ] | 301 ] |
| 301 } | 302 } |
| 303 |
| 304 mojom("interfaces") { |
| 305 sources = [ |
| 306 "window_container_type.mojom", |
| 307 ] |
| 308 } |
| OLD | NEW |