OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 component("capture") { | 9 component("capture") { |
10 defines = [ "CAPTURE_IMPLEMENTATION" ] | 10 defines = [ "CAPTURE_IMPLEMENTATION" ] |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "video/win/video_capture_device_mf_win.cc", | 85 "video/win/video_capture_device_mf_win.cc", |
86 "video/win/video_capture_device_mf_win.h", | 86 "video/win/video_capture_device_mf_win.h", |
87 "video/win/video_capture_device_win.cc", | 87 "video/win/video_capture_device_win.cc", |
88 "video/win/video_capture_device_win.h", | 88 "video/win/video_capture_device_win.h", |
89 "video_capture_types.cc", | 89 "video_capture_types.cc", |
90 "video_capture_types.h", | 90 "video_capture_types.h", |
91 "video_capturer_source.cc", | 91 "video_capturer_source.cc", |
92 "video_capturer_source.h", | 92 "video_capturer_source.h", |
93 ] | 93 ] |
94 | 94 |
95 public_deps = [] | 95 public_deps = [ |
| 96 "//media/base:video_facing", |
| 97 ] |
96 deps = [ | 98 deps = [ |
97 "//base", | 99 "//base", |
98 "//base:i18n", | 100 "//base:i18n", |
99 "//media", | 101 "//media", |
100 "//media/capture/mojo:image_capture", | 102 "//media/capture/mojo:image_capture", |
101 "//skia", | 103 "//skia", |
102 "//third_party/libyuv", | 104 "//third_party/libyuv", |
103 "//ui/display", | 105 "//ui/display", |
104 "//ui/gfx", | 106 "//ui/gfx", |
105 ] | 107 ] |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 "//media/capture/video/android", | 195 "//media/capture/video/android", |
194 "//media/capture/video/android:capture_java", | 196 "//media/capture/video/android:capture_java", |
195 ] | 197 ] |
196 } | 198 } |
197 | 199 |
198 if (is_win) { | 200 if (is_win) { |
199 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. | 201 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. |
200 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 202 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
201 } | 203 } |
202 } | 204 } |
OLD | NEW |