Chromium Code Reviews| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 153 "video/capture/file_video_capture_device.cc", | 153 "video/capture/file_video_capture_device.cc", |
| 154 "video/capture/file_video_capture_device.h", | 154 "video/capture/file_video_capture_device.h", |
| 155 "video/capture/file_video_capture_device_factory.h", | 155 "video/capture/file_video_capture_device_factory.h", |
| 156 "video/capture/file_video_capture_device_factory.cc", | 156 "video/capture/file_video_capture_device_factory.cc", |
| 157 "video/capture/linux/video_capture_device_factory_linux.cc", | 157 "video/capture/linux/video_capture_device_factory_linux.cc", |
| 158 "video/capture/linux/video_capture_device_factory_linux.h", | 158 "video/capture/linux/video_capture_device_factory_linux.h", |
| 159 "video/capture/linux/video_capture_device_linux.cc", | 159 "video/capture/linux/video_capture_device_linux.cc", |
| 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", | |
| 164 "video/capture/mac/avfoundation_glue.mm", | |
| 165 "video/capture/mac/coremedia_glue.h", | |
| 166 "video/capture/mac/coremedia_glue.mm", | |
| 167 "video/capture/mac/platform_video_capturing_mac.h", | 163 "video/capture/mac/platform_video_capturing_mac.h", |
| 168 "video/capture/mac/video_capture_device_avfoundation_mac.h", | 164 "video/capture/mac/video_capture_device_avfoundation_mac.h", |
| 169 "video/capture/mac/video_capture_device_avfoundation_mac.mm", | 165 "video/capture/mac/video_capture_device_avfoundation_mac.mm", |
| 170 "video/capture/mac/video_capture_device_factory_mac.h", | 166 "video/capture/mac/video_capture_device_factory_mac.h", |
| 171 "video/capture/mac/video_capture_device_factory_mac.mm", | 167 "video/capture/mac/video_capture_device_factory_mac.mm", |
| 172 "video/capture/mac/video_capture_device_mac.h", | 168 "video/capture/mac/video_capture_device_mac.h", |
| 173 "video/capture/mac/video_capture_device_mac.mm", | 169 "video/capture/mac/video_capture_device_mac.mm", |
| 174 "video/capture/mac/video_capture_device_qtkit_mac.h", | 170 "video/capture/mac/video_capture_device_qtkit_mac.h", |
| 175 "video/capture/mac/video_capture_device_qtkit_mac.mm", | 171 "video/capture/mac/video_capture_device_qtkit_mac.mm", |
| 176 "video/capture/video_capture_device.cc", | 172 "video/capture/video_capture_device.cc", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 326 "ozone/media_ozone_platform.h", | 322 "ozone/media_ozone_platform.h", |
| 327 ] + get_target_outputs(":generate_ozone_constructor_list") | 323 ] + get_target_outputs(":generate_ozone_constructor_list") |
| 328 | 324 |
| 329 deps += [ | 325 deps += [ |
| 330 ":generate_ozone_constructor_list", | 326 ":generate_ozone_constructor_list", |
| 331 "//ui/ozone", | 327 "//ui/ozone", |
| 332 ] | 328 ] |
| 333 } | 329 } |
| 334 | 330 |
| 335 if (is_mac) { | 331 if (is_mac) { |
| 332 deps += [ | |
| 333 "//media/base/mac", | |
| 334 ] | |
| 336 libs += [ | 335 libs += [ |
| 337 "CoreMIDI.framework", | 336 "CoreMIDI.framework", |
| 338 "CoreVideo.framework", | 337 "CoreVideo.framework", |
| 339 "OpenGL.framework", | 338 "OpenGL.framework", |
| 340 "QTKit.framework", | 339 "QTKit.framework", |
| 341 ] | 340 ] |
| 342 } | 341 } |
| 343 | 342 |
| 343 if (is_ios) { | |
| 344 deps += [ | |
| 345 "//media/base/mac", | |
| 346 ] | |
| 347 libs += [ | |
| 348 "CoreMedia.framework", | |
|
Robert Sesek
2014/09/03 21:03:56
This list doesn't match the one in gyp.
jfroy
2014/09/03 21:17:00
Noted. See my other comment about the iOS changes
| |
| 349 "CoreMIDI.framework", | |
| 350 "CoreVideo.framework", | |
| 351 "OpenGLES.framework", | |
| 352 ] | |
| 353 } | |
| 354 | |
| 344 if (is_win) { | 355 if (is_win) { |
| 345 libs += [ | 356 libs += [ |
| 346 "mf.lib", | 357 "mf.lib", |
| 347 "mfplat.lib", | 358 "mfplat.lib", |
| 348 "mfreadwrite.lib", | 359 "mfreadwrite.lib", |
| 349 "mfuuid.lib", | 360 "mfuuid.lib", |
| 350 ] | 361 ] |
| 351 cflags += [ | 362 cflags += [ |
| 352 "/wd4267" # TODO(wolenetz): Fix size_t to int trunctaion in win64. See | 363 "/wd4267" # TODO(wolenetz): Fix size_t to int trunctaion in win64. See |
| 353 # http://crbug.com/171009 | 364 # http://crbug.com/171009 |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 741 java_cpp_template("media_android_imageformat_list") { | 752 java_cpp_template("media_android_imageformat_list") { |
| 742 sources = [ | 753 sources = [ |
| 743 "base/android/java/src/org/chromium/media/ImageFormat.template", | 754 "base/android/java/src/org/chromium/media/ImageFormat.template", |
| 744 ] | 755 ] |
| 745 inputs = [ | 756 inputs = [ |
| 746 "video/capture/android/imageformat_list.h" | 757 "video/capture/android/imageformat_list.h" |
| 747 ] | 758 ] |
| 748 package_name = "org/chromium/media" | 759 package_name = "org/chromium/media" |
| 749 } | 760 } |
| 750 } | 761 } |
| OLD | NEW |