| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/gpu/args.gni") | 7 import("//media/gpu/args.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 if (is_mac) { | 170 if (is_mac) { |
| 171 sources += [ | 171 sources += [ |
| 172 "vt_mac.h", | 172 "vt_mac.h", |
| 173 "vt_video_decode_accelerator_mac.cc", | 173 "vt_video_decode_accelerator_mac.cc", |
| 174 "vt_video_decode_accelerator_mac.h", | 174 "vt_video_decode_accelerator_mac.h", |
| 175 "vt_video_encode_accelerator_mac.cc", | 175 "vt_video_encode_accelerator_mac.cc", |
| 176 "vt_video_encode_accelerator_mac.h", | 176 "vt_video_encode_accelerator_mac.h", |
| 177 ] + get_target_outputs(":libvt_generate_stubs") | 177 ] + get_target_outputs(":libvt_generate_stubs") |
| 178 deps += [ ":libvt_generate_stubs" ] | 178 deps += [ ":libvt_generate_stubs" ] |
| 179 lib_dirs = [ "$mac_sdk_path/usr/lib" ] | 179 lib_dirs = [ "$mac_sdk_path/usr/lib" ] |
| 180 | 180 libs = [ |
| 181 # TODO(markdittmer): Determine which libs are needed here. | 181 "AVFoundation.framework", |
| 182 libs += [ | 182 "CoreMedia.framework", |
| 183 # "AVFoundation.framework", | 183 "CoreVideo.framework", |
| 184 # "CoreMedia.framework", | 184 "IOSurface.framework", |
| 185 # "CoreVideo.framework", | 185 "QuartzCore.framework", |
| 186 # "IOSurface.framework", | 186 "sandbox", |
| 187 # "OpenGL.framework", | |
| 188 # "QuartzCore.framework", | |
| 189 # "sandbox", | |
| 190 ] | 187 ] |
| 191 } | 188 } |
| 192 | 189 |
| 193 if (is_android) { | 190 if (is_android) { |
| 194 sources += [ | 191 sources += [ |
| 195 "android_copying_backing_strategy.cc", | 192 "android_copying_backing_strategy.cc", |
| 196 "android_copying_backing_strategy.h", | 193 "android_copying_backing_strategy.h", |
| 197 "android_deferred_rendering_backing_strategy.cc", | 194 "android_deferred_rendering_backing_strategy.cc", |
| 198 "android_deferred_rendering_backing_strategy.h", | 195 "android_deferred_rendering_backing_strategy.h", |
| 199 "android_video_decode_accelerator.cc", | 196 "android_video_decode_accelerator.cc", |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 "video_encode_accelerator_unittest.cc", | 426 "video_encode_accelerator_unittest.cc", |
| 430 ] | 427 ] |
| 431 if (use_x11) { | 428 if (use_x11) { |
| 432 deps += [ "//ui/gfx/x" ] | 429 deps += [ "//ui/gfx/x" ] |
| 433 } | 430 } |
| 434 if (use_ozone) { | 431 if (use_ozone) { |
| 435 deps += [ "//ui/ozone" ] | 432 deps += [ "//ui/ozone" ] |
| 436 } | 433 } |
| 437 } | 434 } |
| 438 } | 435 } |
| OLD | NEW |