| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.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_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 } | 343 } |
| 344 } | 344 } |
| 345 } | 345 } |
| 346 | 346 |
| 347 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 347 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 348 | 348 |
| 349 if (proprietary_codecs && enable_hevc_demuxing) { | 349 if (proprietary_codecs && enable_hevc_demuxing) { |
| 350 defines += [ "ENABLE_HEVC_DEMUXING" ] | 350 defines += [ "ENABLE_HEVC_DEMUXING" ] |
| 351 } | 351 } |
| 352 | 352 |
| 353 if (proprietary_codecs && enable_ac3_eac3_demuxing) { |
| 354 defines += [ "ENABLE_AC3_EAC3_DEMUXING" ] |
| 355 } |
| 356 |
| 353 configs += [ | 357 configs += [ |
| 354 "//build/config:precompiled_headers", | 358 "//build/config:precompiled_headers", |
| 355 "//build/config/compiler:no_size_t_to_int_warning", | 359 "//build/config/compiler:no_size_t_to_int_warning", |
| 356 ] | 360 ] |
| 357 | 361 |
| 358 deps = [ | 362 deps = [ |
| 359 ":browsertest_support", | 363 ":browsertest_support", |
| 360 ":web_ui_test_mojo_bindings", | 364 ":web_ui_test_mojo_bindings", |
| 361 "//base/allocator", | 365 "//base/allocator", |
| 362 "//base/test:test_support", | 366 "//base/test:test_support", |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 deps += [ | 902 deps += [ |
| 899 "//gpu:test_support", | 903 "//gpu:test_support", |
| 900 "//media/base/android", | 904 "//media/base/android", |
| 901 "//media/base/android:media_java", | 905 "//media/base/android:media_java", |
| 902 "//testing/gmock", | 906 "//testing/gmock", |
| 903 "//ui/android:ui_java", | 907 "//ui/android:ui_java", |
| 904 ] | 908 ] |
| 905 } | 909 } |
| 906 } | 910 } |
| 907 } | 911 } |
| OLD | NEW |