| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 public_deps += [ "//third_party/webrtc/common_video" ] | 200 public_deps += [ "//third_party/webrtc/common_video" ] |
| 201 libs += [ | 201 libs += [ |
| 202 "CoreFoundation.framework", | 202 "CoreFoundation.framework", |
| 203 "Foundation.framework", | 203 "Foundation.framework", |
| 204 "QuartzCore.framework", | 204 "QuartzCore.framework", |
| 205 ] | 205 ] |
| 206 } | 206 } |
| 207 | 207 |
| 208 if (is_android) { | 208 if (is_android) { |
| 209 sources += [ | 209 sources += [ |
| 210 "android_copying_backing_strategy.cc", | |
| 211 "android_copying_backing_strategy.h", | |
| 212 "android_deferred_rendering_backing_strategy.cc", | |
| 213 "android_deferred_rendering_backing_strategy.h", | |
| 214 "android_video_decode_accelerator.cc", | 210 "android_video_decode_accelerator.cc", |
| 215 "android_video_decode_accelerator.h", | 211 "android_video_decode_accelerator.h", |
| 216 "avda_codec_image.cc", | 212 "avda_codec_image.cc", |
| 217 "avda_codec_image.h", | 213 "avda_codec_image.h", |
| 218 "avda_return_on_failure.h", | 214 "avda_picture_buffer_manager.cc", |
| 215 "avda_picture_buffer_manager.h", |
| 219 "avda_shared_state.cc", | 216 "avda_shared_state.cc", |
| 220 "avda_shared_state.h", | 217 "avda_shared_state.h", |
| 221 "avda_state_provider.h", | 218 "avda_state_provider.h", |
| 222 "avda_surface_tracker.cc", | 219 "avda_surface_tracker.cc", |
| 223 "avda_surface_tracker.h", | 220 "avda_surface_tracker.h", |
| 224 ] | 221 ] |
| 225 | 222 |
| 226 if (enable_webrtc) { | 223 if (enable_webrtc) { |
| 227 deps += [ "//third_party/libyuv" ] | 224 deps += [ "//third_party/libyuv" ] |
| 228 sources += [ | 225 sources += [ |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 "video_accelerator_unittest_helpers.h", | 495 "video_accelerator_unittest_helpers.h", |
| 499 ] | 496 ] |
| 500 if (use_x11) { | 497 if (use_x11) { |
| 501 deps += [ "//ui/gfx/x" ] | 498 deps += [ "//ui/gfx/x" ] |
| 502 } | 499 } |
| 503 if (use_ozone) { | 500 if (use_ozone) { |
| 504 deps += [ "//ui/ozone" ] | 501 deps += [ "//ui/ozone" ] |
| 505 } | 502 } |
| 506 } | 503 } |
| 507 } | 504 } |
| OLD | NEW |