| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 "android_video_decode_accelerator.h", | 173 "android_video_decode_accelerator.h", |
| 174 "avda_codec_allocator.cc", | 174 "avda_codec_allocator.cc", |
| 175 "avda_codec_allocator.h", | 175 "avda_codec_allocator.h", |
| 176 "avda_codec_image.cc", | 176 "avda_codec_image.cc", |
| 177 "avda_codec_image.h", | 177 "avda_codec_image.h", |
| 178 "avda_picture_buffer_manager.cc", | 178 "avda_picture_buffer_manager.cc", |
| 179 "avda_picture_buffer_manager.h", | 179 "avda_picture_buffer_manager.h", |
| 180 "avda_shared_state.cc", | 180 "avda_shared_state.cc", |
| 181 "avda_shared_state.h", | 181 "avda_shared_state.h", |
| 182 "avda_state_provider.h", | 182 "avda_state_provider.h", |
| 183 "avda_surface_tracker.cc", | |
| 184 "avda_surface_tracker.h", | |
| 185 ] | 183 ] |
| 186 | 184 |
| 187 if (enable_webrtc) { | 185 if (enable_webrtc) { |
| 188 deps += [ "//third_party/libyuv" ] | 186 deps += [ "//third_party/libyuv" ] |
| 189 sources += [ | 187 sources += [ |
| 190 "android_video_encode_accelerator.cc", | 188 "android_video_encode_accelerator.cc", |
| 191 "android_video_encode_accelerator.h", | 189 "android_video_encode_accelerator.h", |
| 192 ] | 190 ] |
| 193 } | 191 } |
| 194 | 192 |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 "video_accelerator_unittest_helpers.h", | 475 "video_accelerator_unittest_helpers.h", |
| 478 ] | 476 ] |
| 479 if (use_x11) { | 477 if (use_x11) { |
| 480 deps += [ "//ui/gfx/x" ] | 478 deps += [ "//ui/gfx/x" ] |
| 481 } | 479 } |
| 482 if (use_ozone) { | 480 if (use_ozone) { |
| 483 deps += [ "//ui/ozone" ] | 481 deps += [ "//ui/ozone" ] |
| 484 } | 482 } |
| 485 } | 483 } |
| 486 } | 484 } |
| OLD | NEW |