| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 configs += [ | 97 configs += [ |
| 98 "//build/config:precompiled_headers", | 98 "//build/config:precompiled_headers", |
| 99 "//content:content_implementation", | 99 "//content:content_implementation", |
| 100 ] | 100 ] |
| 101 | 101 |
| 102 public_configs = [ "//v8:external_startup_data" ] | 102 public_configs = [ "//v8:external_startup_data" ] |
| 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/cpp", | |
| 108 "//services/shell/public/interfaces", | 107 "//services/shell/public/interfaces", |
| 109 "//third_party/WebKit/public:blink_headers", | 108 "//third_party/WebKit/public:blink_headers", |
| 110 "//ui/accessibility", | 109 "//ui/accessibility", |
| 111 "//url/ipc:url_ipc", | 110 "//url/ipc:url_ipc", |
| 112 ] | 111 ] |
| 113 deps = [ | 112 deps = [ |
| 114 "//ipc", | 113 "//ipc", |
| 115 "//media", | 114 "//media", |
| 116 "//mojo/common", | 115 "//mojo/common", |
| 117 "//net", | 116 "//net", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 source_set("feature_h264_with_openh264_ffmpeg") { | 156 source_set("feature_h264_with_openh264_ffmpeg") { |
| 158 deps = [ | 157 deps = [ |
| 159 ":features", | 158 ":features", |
| 160 "//base", | 159 "//base", |
| 161 ] | 160 ] |
| 162 sources = [ | 161 sources = [ |
| 163 "feature_h264_with_openh264_ffmpeg.cc", | 162 "feature_h264_with_openh264_ffmpeg.cc", |
| 164 "feature_h264_with_openh264_ffmpeg.h", | 163 "feature_h264_with_openh264_ffmpeg.h", |
| 165 ] | 164 ] |
| 166 } | 165 } |
| OLD | NEW |