| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  125     visibility += [ "//content/common" ] |  125     visibility += [ "//content/common" ] | 
|  126   } |  126   } | 
|  127  |  127  | 
|  128   defines = [ "MEDIA_GPU_IMPLEMENTATION" ] |  128   defines = [ "MEDIA_GPU_IMPLEMENTATION" ] | 
|  129  |  129  | 
|  130   sources = [ |  130   sources = [ | 
|  131     "fake_jpeg_decode_accelerator.cc", |  131     "fake_jpeg_decode_accelerator.cc", | 
|  132     "fake_jpeg_decode_accelerator.h", |  132     "fake_jpeg_decode_accelerator.h", | 
|  133     "fake_video_decode_accelerator.cc", |  133     "fake_video_decode_accelerator.cc", | 
|  134     "fake_video_decode_accelerator.h", |  134     "fake_video_decode_accelerator.h", | 
 |  135     "gles2_decoder_helper.cc", | 
 |  136     "gles2_decoder_helper.h", | 
|  135     "gpu_video_accelerator_util.cc", |  137     "gpu_video_accelerator_util.cc", | 
|  136     "gpu_video_accelerator_util.h", |  138     "gpu_video_accelerator_util.h", | 
|  137     "gpu_video_decode_accelerator_factory.cc", |  139     "gpu_video_decode_accelerator_factory.cc", | 
|  138     "gpu_video_decode_accelerator_factory.h", |  140     "gpu_video_decode_accelerator_factory.h", | 
|  139     "gpu_video_decode_accelerator_helpers.h", |  141     "gpu_video_decode_accelerator_helpers.h", | 
|  140     "gpu_video_encode_accelerator_factory.cc", |  142     "gpu_video_encode_accelerator_factory.cc", | 
|  141     "gpu_video_encode_accelerator_factory.h", |  143     "gpu_video_encode_accelerator_factory.h", | 
|  142     "shared_memory_region.cc", |  144     "shared_memory_region.cc", | 
|  143     "shared_memory_region.h", |  145     "shared_memory_region.h", | 
|  144   ] |  146   ] | 
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  577     "//base/test:test_support", |  579     "//base/test:test_support", | 
|  578     "//gpu:test_support", |  580     "//gpu:test_support", | 
|  579     "//media/gpu/ipc/common", |  581     "//media/gpu/ipc/common", | 
|  580     "//media/gpu/ipc/service", |  582     "//media/gpu/ipc/service", | 
|  581     "//testing/gmock", |  583     "//testing/gmock", | 
|  582     "//testing/gtest", |  584     "//testing/gtest", | 
|  583     "//ui/gfx:test_support", |  585     "//ui/gfx:test_support", | 
|  584     "//ui/gfx/geometry", |  586     "//ui/gfx/geometry", | 
|  585   ] |  587   ] | 
|  586 } |  588 } | 
| OLD | NEW |