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