| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 | 272 |
| 273 allow_circular_includes_from = [] | 273 allow_circular_includes_from = [] |
| 274 cflags = [] | 274 cflags = [] |
| 275 libs = [] | 275 libs = [] |
| 276 defines = [] | 276 defines = [] |
| 277 deps = [ | 277 deps = [ |
| 278 ":cdm_api", | 278 ":cdm_api", |
| 279 "//base", | 279 "//base", |
| 280 "//base:i18n", | 280 "//base:i18n", |
| 281 "//base/third_party/dynamic_annotations", | 281 "//base/third_party/dynamic_annotations", |
| 282 "//cc/paint", |
| 282 "//crypto", | 283 "//crypto", |
| 283 "//crypto:platform", | 284 "//crypto:platform", |
| 284 "//gpu/command_buffer/client:gles2_interface", | 285 "//gpu/command_buffer/client:gles2_interface", |
| 285 "//gpu/command_buffer/common", | 286 "//gpu/command_buffer/common", |
| 286 "//skia", | 287 "//skia", |
| 287 "//third_party/libwebm", | 288 "//third_party/libwebm", |
| 288 "//third_party/libyuv", | 289 "//third_party/libyuv", |
| 289 "//ui/events:events_base", | 290 "//ui/events:events_base", |
| 290 "//ui/gfx", | 291 "//ui/gfx", |
| 291 "//ui/gfx/geometry", | 292 "//ui/gfx/geometry", |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 "video/mock_video_decode_accelerator.h", | 830 "video/mock_video_decode_accelerator.h", |
| 830 "video/mock_video_encode_accelerator.cc", | 831 "video/mock_video_encode_accelerator.cc", |
| 831 "video/mock_video_encode_accelerator.h", | 832 "video/mock_video_encode_accelerator.h", |
| 832 ] | 833 ] |
| 833 public_deps = [ | 834 public_deps = [ |
| 834 ":media", | 835 ":media", |
| 835 ":shared_memory_support", | 836 ":shared_memory_support", |
| 836 ] | 837 ] |
| 837 deps = [ | 838 deps = [ |
| 838 "//base", | 839 "//base", |
| 840 "//cc/paint", |
| 839 "//gpu/command_buffer/common", | 841 "//gpu/command_buffer/common", |
| 840 "//skia", | 842 "//skia", |
| 841 "//testing/gmock", | 843 "//testing/gmock", |
| 842 "//testing/gtest", | 844 "//testing/gtest", |
| 843 "//ui/gfx", | 845 "//ui/gfx", |
| 844 ] | 846 ] |
| 845 } | 847 } |
| 846 | 848 |
| 847 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn. | 849 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn. |
| 848 component("shared_memory_support") { | 850 component("shared_memory_support") { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 971 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 970 sources = [ | 972 sources = [ |
| 971 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 973 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 972 ] | 974 ] |
| 973 deps = [ | 975 deps = [ |
| 974 ":media", | 976 ":media", |
| 975 "//base", | 977 "//base", |
| 976 ] | 978 ] |
| 977 } | 979 } |
| 978 } | 980 } |
| OLD | NEW |