| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 if (is_mac) { | 179 if (is_mac) { |
| 180 sources += [ | 180 sources += [ |
| 181 "vt_mac.h", | 181 "vt_mac.h", |
| 182 "vt_video_decode_accelerator_mac.cc", | 182 "vt_video_decode_accelerator_mac.cc", |
| 183 "vt_video_decode_accelerator_mac.h", | 183 "vt_video_decode_accelerator_mac.h", |
| 184 "vt_video_encode_accelerator_mac.cc", | 184 "vt_video_encode_accelerator_mac.cc", |
| 185 "vt_video_encode_accelerator_mac.h", | 185 "vt_video_encode_accelerator_mac.h", |
| 186 ] + get_target_outputs(":libvt_generate_stubs") | 186 ] + get_target_outputs(":libvt_generate_stubs") |
| 187 deps += [ | 187 deps += [ |
| 188 ":libvt_generate_stubs", | 188 ":libvt_generate_stubs", |
| 189 "//third_party/webrtc/common_video", | |
| 190 "//third_party/webrtc/system_wrappers", | 189 "//third_party/webrtc/system_wrappers", |
| 191 ] | 190 ] |
| 191 public_deps += [ "//third_party/webrtc/common_video" ] |
| 192 libs += [ | 192 libs += [ |
| 193 "CoreFoundation.framework", | 193 "CoreFoundation.framework", |
| 194 "Foundation.framework", | 194 "Foundation.framework", |
| 195 "QuartzCore.framework", | 195 "QuartzCore.framework", |
| 196 ] | 196 ] |
| 197 } | 197 } |
| 198 | 198 |
| 199 if (is_android) { | 199 if (is_android) { |
| 200 sources += [ | 200 sources += [ |
| 201 "android_copying_backing_strategy.cc", | 201 "android_copying_backing_strategy.cc", |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "video_encode_accelerator_unittest.cc", | 447 "video_encode_accelerator_unittest.cc", |
| 448 ] | 448 ] |
| 449 if (use_x11) { | 449 if (use_x11) { |
| 450 deps += [ "//ui/gfx/x" ] | 450 deps += [ "//ui/gfx/x" ] |
| 451 } | 451 } |
| 452 if (use_ozone) { | 452 if (use_ozone) { |
| 453 deps += [ "//ui/ozone" ] | 453 deps += [ "//ui/ozone" ] |
| 454 } | 454 } |
| 455 } | 455 } |
| 456 } | 456 } |
| OLD | NEW |