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", | |
92 ] | 91 ] |
93 deps = [ | 92 deps = [ |
94 "//net", | 93 "//net", |
95 "//skia", | 94 "//skia", |
96 "//third_party/WebKit/public:blink_headers", | 95 "//third_party/WebKit/public:blink_headers", |
97 "//third_party/icu", | 96 "//third_party/icu", |
98 "//ui/base", | 97 "//ui/base", |
99 "//ui/gfx", | 98 "//ui/gfx", |
100 ] | 99 ] |
101 | 100 |
(...skipping 29 matching lines...) Expand all Loading... |
131 | 130 |
132 source_set("feature_h264_with_openh264_ffmpeg") { | 131 source_set("feature_h264_with_openh264_ffmpeg") { |
133 deps = [ | 132 deps = [ |
134 ":features", | 133 ":features", |
135 ] | 134 ] |
136 sources = [ | 135 sources = [ |
137 "feature_h264_with_openh264_ffmpeg.cc", | 136 "feature_h264_with_openh264_ffmpeg.cc", |
138 "feature_h264_with_openh264_ffmpeg.h", | 137 "feature_h264_with_openh264_ffmpeg.h", |
139 ] | 138 ] |
140 } | 139 } |
OLD | NEW |