| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 } | 339 } |
| 340 } | 340 } |
| 341 } | 341 } |
| 342 | 342 |
| 343 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 343 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 344 | 344 |
| 345 if (proprietary_codecs && enable_hevc_demuxing) { | 345 if (proprietary_codecs && enable_hevc_demuxing) { |
| 346 defines += [ "ENABLE_HEVC_DEMUXING" ] | 346 defines += [ "ENABLE_HEVC_DEMUXING" ] |
| 347 } | 347 } |
| 348 | 348 |
| 349 if (proprietary_codecs && enable_ac3_eac3_demuxing) { |
| 350 defines += [ "ENABLE_AC3_EAC3_DEMUXING" ] |
| 351 } |
| 352 |
| 349 configs += [ | 353 configs += [ |
| 350 "//build/config:precompiled_headers", | 354 "//build/config:precompiled_headers", |
| 351 "//build/config/compiler:no_size_t_to_int_warning", | 355 "//build/config/compiler:no_size_t_to_int_warning", |
| 352 ] | 356 ] |
| 353 | 357 |
| 354 deps = [ | 358 deps = [ |
| 355 ":browsertest_support", | 359 ":browsertest_support", |
| 356 ":web_ui_test_mojo_bindings", | 360 ":web_ui_test_mojo_bindings", |
| 357 "//base/allocator", | 361 "//base/allocator", |
| 358 "//base/test:test_support", | 362 "//base/test:test_support", |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 "//media/base/android", | 902 "//media/base/android", |
| 899 "//testing/gmock", | 903 "//testing/gmock", |
| 900 ] | 904 ] |
| 901 apk_deps = [ | 905 apk_deps = [ |
| 902 "//media/base/android:media_java", | 906 "//media/base/android:media_java", |
| 903 "//ui/android:ui_java", | 907 "//ui/android:ui_java", |
| 904 ] | 908 ] |
| 905 } | 909 } |
| 906 } | 910 } |
| 907 } | 911 } |
| OLD | NEW |