| 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/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "yuv_convert.cc", | 231 "yuv_convert.cc", |
| 232 "yuv_convert.h", | 232 "yuv_convert.h", |
| 233 ] | 233 ] |
| 234 | 234 |
| 235 allow_circular_includes_from = [] | 235 allow_circular_includes_from = [] |
| 236 defines = [] | 236 defines = [] |
| 237 public_deps = [] | 237 public_deps = [] |
| 238 deps = [ | 238 deps = [ |
| 239 "//base/third_party/dynamic_annotations:dynamic_annotations", | 239 "//base/third_party/dynamic_annotations:dynamic_annotations", |
| 240 "//gpu", | 240 "//gpu", |
| 241 "//media:media_features", | |
| 242 "//media:shared_memory_support", | 241 "//media:shared_memory_support", |
| 243 "//skia", | 242 "//skia", |
| 244 "//ui/events:events_base", | 243 "//ui/events:events_base", |
| 245 "//url:url", | 244 "//url:url", |
| 246 ] | 245 ] |
| 247 libs = [] | 246 libs = [] |
| 248 configs += [ | 247 configs += [ |
| 249 # This target uses the ALLOCATOR_SHIM define. | 248 # This target uses the ALLOCATOR_SHIM define. |
| 250 "//base/allocator:allocator_shim_define", | 249 "//base/allocator:allocator_shim_define", |
| 251 "//build/config:precompiled_headers", | 250 "//build/config:precompiled_headers", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 "mock_media_log.cc", | 377 "mock_media_log.cc", |
| 379 "mock_media_log.h", | 378 "mock_media_log.h", |
| 380 "test_data_util.cc", | 379 "test_data_util.cc", |
| 381 "test_data_util.h", | 380 "test_data_util.h", |
| 382 "test_helpers.cc", | 381 "test_helpers.cc", |
| 383 "test_helpers.h", | 382 "test_helpers.h", |
| 384 "test_random.h", | 383 "test_random.h", |
| 385 ] | 384 ] |
| 386 configs += [ "//media:media_config" ] | 385 configs += [ "//media:media_config" ] |
| 387 deps = [ | 386 deps = [ |
| 388 "//media:media_features", | |
| 389 "//media:shared_memory_support", | 387 "//media:shared_memory_support", |
| 390 "//testing/gmock", | 388 "//testing/gmock", |
| 391 ] | 389 ] |
| 392 } | 390 } |
| 393 | 391 |
| 394 source_set("unittests") { | 392 source_set("unittests") { |
| 395 testonly = true | 393 testonly = true |
| 396 sources = [ | 394 sources = [ |
| 397 "audio_block_fifo_unittest.cc", | 395 "audio_block_fifo_unittest.cc", |
| 398 "audio_buffer_converter_unittest.cc", | 396 "audio_buffer_converter_unittest.cc", |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 | 580 |
| 583 fuzzer_test("media_container_names_fuzzer") { | 581 fuzzer_test("media_container_names_fuzzer") { |
| 584 sources = [ | 582 sources = [ |
| 585 "container_names_fuzzertest.cc", | 583 "container_names_fuzzertest.cc", |
| 586 ] | 584 ] |
| 587 deps = [ | 585 deps = [ |
| 588 "//base", | 586 "//base", |
| 589 "//media", | 587 "//media", |
| 590 ] | 588 ] |
| 591 } | 589 } |
| OLD | NEW |