| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| 96 deps = [ | 97 deps = [ |
| 97 "//base", | 98 "//base", |
| 98 "//base:i18n", | 99 "//base:i18n", |
| 99 "//media", | 100 "//media", |
| 101 "//media/capture/mojo:capture_types", |
| 100 "//media/capture/mojo:image_capture", | 102 "//media/capture/mojo:image_capture", |
| 103 "//media/mojo/interfaces:interfaces", |
| 104 "//services/service_manager/public/cpp", |
| 101 "//skia", | 105 "//skia", |
| 102 "//third_party/libyuv", | 106 "//third_party/libyuv", |
| 103 "//ui/display", | 107 "//ui/display", |
| 104 "//ui/gfx", | 108 "//ui/gfx", |
| 105 ] | 109 ] |
| 106 | 110 |
| 107 configs += [ | 111 configs += [ |
| 108 # TODO(mcasas): media/base should be a component and not a source_set, but | 112 # TODO(mcasas): media/base should be a component and not a source_set, but |
| 109 # it depends on parts of media/filters, media/ffmpeg etc. Until then, we | 113 # it depends on parts of media/filters, media/ffmpeg etc. Until then, we |
| 110 # pretend to be inside media.dll and duplicate the few symbols needed, see | 114 # pretend to be inside media.dll and duplicate the few symbols needed, see |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 "//media/capture/video/android", | 197 "//media/capture/video/android", |
| 194 "//media/capture/video/android:capture_java", | 198 "//media/capture/video/android:capture_java", |
| 195 ] | 199 ] |
| 196 } | 200 } |
| 197 | 201 |
| 198 if (is_win) { | 202 if (is_win) { |
| 199 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. | 203 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. |
| 200 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 204 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 201 } | 205 } |
| 202 } | 206 } |
| OLD | NEW |