| 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 ] | 511 ] |
| 512 } | 512 } |
| 513 } | 513 } |
| 514 | 514 |
| 515 source_set("perftests") { | 515 source_set("perftests") { |
| 516 testonly = true | 516 testonly = true |
| 517 sources = [ | 517 sources = [ |
| 518 "audio_bus_perftest.cc", | 518 "audio_bus_perftest.cc", |
| 519 "audio_converter_perftest.cc", | 519 "audio_converter_perftest.cc", |
| 520 "run_all_perftests.cc", | 520 "run_all_perftests.cc", |
| 521 "sinc_resampler_perftest.cc", | |
| 522 "vector_math_perftest.cc", | 521 "vector_math_perftest.cc", |
| 523 "yuv_convert_perftest.cc", | 522 "yuv_convert_perftest.cc", |
| 524 ] | 523 ] |
| 525 configs += [ "//media:media_config" ] | 524 configs += [ "//media:media_config" ] |
| 526 deps = [ | 525 deps = [ |
| 527 ":test_support", | 526 ":test_support", |
| 528 "//base", | 527 "//base", |
| 529 "//base/test:test_support", | 528 "//base/test:test_support", |
| 530 "//media", | 529 "//media", |
| 531 "//testing/gmock", | 530 "//testing/gmock", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 | 615 |
| 617 fuzzer_test("media_container_names_fuzzer") { | 616 fuzzer_test("media_container_names_fuzzer") { |
| 618 sources = [ | 617 sources = [ |
| 619 "container_names_fuzzertest.cc", | 618 "container_names_fuzzertest.cc", |
| 620 ] | 619 ] |
| 621 deps = [ | 620 deps = [ |
| 622 "//base", | 621 "//base", |
| 623 "//media", | 622 "//media", |
| 624 ] | 623 ] |
| 625 } | 624 } |
| OLD | NEW |