| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 } | 350 } |
| 351 } | 351 } |
| 352 } | 352 } |
| 353 | 353 |
| 354 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 354 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 355 | 355 |
| 356 if (proprietary_codecs && enable_hevc_demuxing) { | 356 if (proprietary_codecs && enable_hevc_demuxing) { |
| 357 defines += [ "ENABLE_HEVC_DEMUXING" ] | 357 defines += [ "ENABLE_HEVC_DEMUXING" ] |
| 358 } | 358 } |
| 359 | 359 |
| 360 if (proprietary_codecs && enable_ac3_eac3_demuxing) { |
| 361 defines += [ "ENABLE_AC3_EAC3_DEMUXING" ] |
| 362 } |
| 363 |
| 360 configs += [ | 364 configs += [ |
| 361 "//build/config:precompiled_headers", | 365 "//build/config:precompiled_headers", |
| 362 "//build/config/compiler:no_size_t_to_int_warning", | 366 "//build/config/compiler:no_size_t_to_int_warning", |
| 363 ] | 367 ] |
| 364 | 368 |
| 365 deps = [ | 369 deps = [ |
| 366 ":browsertest_support", | 370 ":browsertest_support", |
| 367 ":web_ui_test_mojo_bindings", | 371 ":web_ui_test_mojo_bindings", |
| 368 "//base/allocator", | 372 "//base/allocator", |
| 369 "//base/test:test_support", | 373 "//base/test:test_support", |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 deps += [ | 909 deps += [ |
| 906 "//gpu:test_support", | 910 "//gpu:test_support", |
| 907 "//media/base/android", | 911 "//media/base/android", |
| 908 "//media/base/android:media_java", | 912 "//media/base/android:media_java", |
| 909 "//testing/gmock", | 913 "//testing/gmock", |
| 910 "//ui/android:ui_java", | 914 "//ui/android:ui_java", |
| 911 ] | 915 ] |
| 912 } | 916 } |
| 913 } | 917 } |
| 914 } | 918 } |
| OLD | NEW |