| 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 source_set("capture") { | 9 source_set("capture") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "video/linux/video_capture_device_linux.h", | 47 "video/linux/video_capture_device_linux.h", |
| 48 "video/mac/platform_video_capturing_mac.h", | 48 "video/mac/platform_video_capturing_mac.h", |
| 49 "video/mac/video_capture_device_avfoundation_mac.h", | 49 "video/mac/video_capture_device_avfoundation_mac.h", |
| 50 "video/mac/video_capture_device_avfoundation_mac.mm", | 50 "video/mac/video_capture_device_avfoundation_mac.mm", |
| 51 "video/mac/video_capture_device_decklink_mac.h", | 51 "video/mac/video_capture_device_decklink_mac.h", |
| 52 "video/mac/video_capture_device_decklink_mac.mm", | 52 "video/mac/video_capture_device_decklink_mac.mm", |
| 53 "video/mac/video_capture_device_factory_mac.h", | 53 "video/mac/video_capture_device_factory_mac.h", |
| 54 "video/mac/video_capture_device_factory_mac.mm", | 54 "video/mac/video_capture_device_factory_mac.mm", |
| 55 "video/mac/video_capture_device_mac.h", | 55 "video/mac/video_capture_device_mac.h", |
| 56 "video/mac/video_capture_device_mac.mm", | 56 "video/mac/video_capture_device_mac.mm", |
| 57 "video/mac/video_capture_device_qtkit_mac.h", | |
| 58 "video/mac/video_capture_device_qtkit_mac.mm", | |
| 59 "video/video_capture_device.cc", | 57 "video/video_capture_device.cc", |
| 60 "video/video_capture_device.h", | 58 "video/video_capture_device.h", |
| 61 "video/video_capture_device_factory.cc", | 59 "video/video_capture_device_factory.cc", |
| 62 "video/video_capture_device_factory.h", | 60 "video/video_capture_device_factory.h", |
| 63 "video/video_capture_device_info.cc", | 61 "video/video_capture_device_info.cc", |
| 64 "video/video_capture_device_info.h", | 62 "video/video_capture_device_info.h", |
| 65 "video/win/capability_list_win.cc", | 63 "video/win/capability_list_win.cc", |
| 66 "video/win/capability_list_win.h", | 64 "video/win/capability_list_win.h", |
| 67 "video/win/filter_base_win.cc", | 65 "video/win/filter_base_win.cc", |
| 68 "video/win/filter_base_win.h", | 66 "video/win/filter_base_win.h", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 148 |
| 151 deps = [ | 149 deps = [ |
| 152 "//media/base:unittests", | 150 "//media/base:unittests", |
| 153 "//testing/gmock", | 151 "//testing/gmock", |
| 154 "//testing/gtest", | 152 "//testing/gtest", |
| 155 ] | 153 ] |
| 156 | 154 |
| 157 # TODO(mcasas): Fix size_t to int truncation warning-treated-as-errors. | 155 # TODO(mcasas): Fix size_t to int truncation warning-treated-as-errors. |
| 158 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 156 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 159 } | 157 } |
| OLD | NEW |