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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 configs += [ | 88 configs += [ |
89 "//build/config:precompiled_headers", | 89 "//build/config:precompiled_headers", |
90 "//content:content_implementation", | 90 "//content:content_implementation", |
91 ] | 91 ] |
92 | 92 |
93 public_configs = [ "//v8:external_startup_data" ] | 93 public_configs = [ "//v8:external_startup_data" ] |
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 "//ui/accessibility", |
98 "//url/ipc:url_ipc", | 99 "//url/ipc:url_ipc", |
99 ] | 100 ] |
100 deps = [ | 101 deps = [ |
101 "//ipc", | 102 "//ipc", |
102 "//ipc/mojo", | 103 "//ipc/mojo", |
103 "//media", | 104 "//media", |
104 "//mojo/common", | 105 "//mojo/common", |
105 "//net", | 106 "//net", |
106 "//ppapi/c", | 107 "//ppapi/c", |
107 "//skia", | 108 "//skia", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 source_set("feature_h264_with_openh264_ffmpeg") { | 152 source_set("feature_h264_with_openh264_ffmpeg") { |
152 deps = [ | 153 deps = [ |
153 ":features", | 154 ":features", |
154 "//base", | 155 "//base", |
155 ] | 156 ] |
156 sources = [ | 157 sources = [ |
157 "feature_h264_with_openh264_ffmpeg.cc", | 158 "feature_h264_with_openh264_ffmpeg.cc", |
158 "feature_h264_with_openh264_ffmpeg.h", | 159 "feature_h264_with_openh264_ffmpeg.h", |
159 ] | 160 ] |
160 } | 161 } |
OLD | NEW |