| 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 "vector_math_testing.h", | 390 "vector_math_testing.h", |
| 391 ] | 391 ] |
| 392 configs += [ "//media:media_config" ] | 392 configs += [ "//media:media_config" ] |
| 393 deps = [ | 393 deps = [ |
| 394 "//base", | 394 "//base", |
| 395 "//base/test:test_support", | 395 "//base/test:test_support", |
| 396 "//media", | 396 "//media", |
| 397 "//media:media_features", | 397 "//media:media_features", |
| 398 "//media:shared_memory_support", | 398 "//media:shared_memory_support", |
| 399 "//testing/gmock", | 399 "//testing/gmock", |
| 400 "//ui/gfx/geometry", | 400 "//ui/gfx:test_support", |
| 401 ] | 401 ] |
| 402 } | 402 } |
| 403 | 403 |
| 404 source_set("unittests") { | 404 source_set("unittests") { |
| 405 testonly = true | 405 testonly = true |
| 406 sources = [ | 406 sources = [ |
| 407 "audio_block_fifo_unittest.cc", | 407 "audio_block_fifo_unittest.cc", |
| 408 "audio_buffer_converter_unittest.cc", | 408 "audio_buffer_converter_unittest.cc", |
| 409 "audio_buffer_queue_unittest.cc", | 409 "audio_buffer_queue_unittest.cc", |
| 410 "audio_buffer_unittest.cc", | 410 "audio_buffer_unittest.cc", |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 | 598 |
| 599 fuzzer_test("media_container_names_fuzzer") { | 599 fuzzer_test("media_container_names_fuzzer") { |
| 600 sources = [ | 600 sources = [ |
| 601 "container_names_fuzzertest.cc", | 601 "container_names_fuzzertest.cc", |
| 602 ] | 602 ] |
| 603 deps = [ | 603 deps = [ |
| 604 "//base", | 604 "//base", |
| 605 "//media", | 605 "//media", |
| 606 ] | 606 ] |
| 607 } | 607 } |
| OLD | NEW |