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