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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 configs += [ | 81 configs += [ |
82 "//build/config:precompiled_headers", | 82 "//build/config:precompiled_headers", |
83 "//content:content_implementation", | 83 "//content:content_implementation", |
84 ] | 84 ] |
85 | 85 |
86 public_configs = [ "//v8:external_startup_data" ] | 86 public_configs = [ "//v8:external_startup_data" ] |
87 | 87 |
88 public_deps = [ | 88 public_deps = [ |
89 "//content/common", | 89 "//content/common", |
90 "//mojo/public/cpp/bindings", | 90 "//mojo/public/cpp/bindings", |
| 91 "//url/ipc:url_ipc", |
91 ] | 92 ] |
92 deps = [ | 93 deps = [ |
93 "//net", | 94 "//net", |
94 "//skia", | 95 "//skia", |
95 "//third_party/WebKit/public:blink_headers", | 96 "//third_party/WebKit/public:blink_headers", |
96 "//third_party/icu", | 97 "//third_party/icu", |
97 "//ui/base", | 98 "//ui/base", |
98 "//ui/gfx", | 99 "//ui/gfx", |
99 ] | 100 ] |
100 | 101 |
(...skipping 29 matching lines...) Expand all Loading... |
130 | 131 |
131 source_set("feature_h264_with_openh264_ffmpeg") { | 132 source_set("feature_h264_with_openh264_ffmpeg") { |
132 deps = [ | 133 deps = [ |
133 ":features", | 134 ":features", |
134 ] | 135 ] |
135 sources = [ | 136 sources = [ |
136 "feature_h264_with_openh264_ffmpeg.cc", | 137 "feature_h264_with_openh264_ffmpeg.cc", |
137 "feature_h264_with_openh264_ffmpeg.h", | 138 "feature_h264_with_openh264_ffmpeg.h", |
138 ] | 139 ] |
139 } | 140 } |
OLD | NEW |