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