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