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/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 "video/capture/linux/video_capture_device_linux.h", | 160 "video/capture/linux/video_capture_device_linux.h", |
161 "video/capture/linux/video_capture_device_chromeos.cc", | 161 "video/capture/linux/video_capture_device_chromeos.cc", |
162 "video/capture/linux/video_capture_device_chromeos.h", | 162 "video/capture/linux/video_capture_device_chromeos.h", |
163 "video/capture/mac/avfoundation_glue.h", | 163 "video/capture/mac/avfoundation_glue.h", |
164 "video/capture/mac/avfoundation_glue.mm", | 164 "video/capture/mac/avfoundation_glue.mm", |
165 "video/capture/mac/coremedia_glue.h", | 165 "video/capture/mac/coremedia_glue.h", |
166 "video/capture/mac/coremedia_glue.mm", | 166 "video/capture/mac/coremedia_glue.mm", |
167 "video/capture/mac/platform_video_capturing_mac.h", | 167 "video/capture/mac/platform_video_capturing_mac.h", |
168 "video/capture/mac/video_capture_device_avfoundation_mac.h", | 168 "video/capture/mac/video_capture_device_avfoundation_mac.h", |
169 "video/capture/mac/video_capture_device_avfoundation_mac.mm", | 169 "video/capture/mac/video_capture_device_avfoundation_mac.mm", |
| 170 "video/capture/mac/video_capture_device_decklink_mac.h", |
| 171 "video/capture/mac/video_capture_device_decklink_mac.mm", |
170 "video/capture/mac/video_capture_device_factory_mac.h", | 172 "video/capture/mac/video_capture_device_factory_mac.h", |
171 "video/capture/mac/video_capture_device_factory_mac.mm", | 173 "video/capture/mac/video_capture_device_factory_mac.mm", |
172 "video/capture/mac/video_capture_device_mac.h", | 174 "video/capture/mac/video_capture_device_mac.h", |
173 "video/capture/mac/video_capture_device_mac.mm", | 175 "video/capture/mac/video_capture_device_mac.mm", |
174 "video/capture/mac/video_capture_device_qtkit_mac.h", | 176 "video/capture/mac/video_capture_device_qtkit_mac.h", |
175 "video/capture/mac/video_capture_device_qtkit_mac.mm", | 177 "video/capture/mac/video_capture_device_qtkit_mac.mm", |
176 "video/capture/video_capture_device.cc", | 178 "video/capture/video_capture_device.cc", |
177 "video/capture/video_capture_device.h", | 179 "video/capture/video_capture_device.h", |
178 "video/capture/video_capture_device_factory.cc", | 180 "video/capture/video_capture_device_factory.cc", |
179 "video/capture/video_capture_device_factory.h", | 181 "video/capture/video_capture_device_factory.h", |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 "ozone/media_ozone_platform.h", | 328 "ozone/media_ozone_platform.h", |
327 ] + get_target_outputs(":generate_ozone_constructor_list") | 329 ] + get_target_outputs(":generate_ozone_constructor_list") |
328 | 330 |
329 deps += [ | 331 deps += [ |
330 ":generate_ozone_constructor_list", | 332 ":generate_ozone_constructor_list", |
331 "//ui/ozone", | 333 "//ui/ozone", |
332 ] | 334 ] |
333 } | 335 } |
334 | 336 |
335 if (is_mac) { | 337 if (is_mac) { |
| 338 deps += [ "//third_party/decklink" ] |
336 libs += [ | 339 libs += [ |
337 "CoreMIDI.framework", | 340 "CoreMIDI.framework", |
338 "CoreVideo.framework", | 341 "CoreVideo.framework", |
339 "OpenGL.framework", | 342 "OpenGL.framework", |
340 "QTKit.framework", | 343 "QTKit.framework", |
341 ] | 344 ] |
342 } | 345 } |
343 | 346 |
344 if (is_win) { | 347 if (is_win) { |
345 libs += [ | 348 libs += [ |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 java_cpp_template("media_android_imageformat_list") { | 744 java_cpp_template("media_android_imageformat_list") { |
742 sources = [ | 745 sources = [ |
743 "base/android/java/src/org/chromium/media/ImageFormat.template", | 746 "base/android/java/src/org/chromium/media/ImageFormat.template", |
744 ] | 747 ] |
745 inputs = [ | 748 inputs = [ |
746 "video/capture/android/imageformat_list.h" | 749 "video/capture/android/imageformat_list.h" |
747 ] | 750 ] |
748 package_name = "org/chromium/media" | 751 package_name = "org/chromium/media" |
749 } | 752 } |
750 } | 753 } |
OLD | NEW |