Chromium Code Reviews| 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/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 303 ] | 303 ] |
| 304 } | 304 } |
| 305 if (is_win) { | 305 if (is_win) { |
| 306 data += [ "$root_out_dir/plugins/np_test_netscape_plugin.dll" ] | 306 data += [ "$root_out_dir/plugins/np_test_netscape_plugin.dll" ] |
| 307 } | 307 } |
| 308 } | 308 } |
| 309 } | 309 } |
| 310 | 310 |
| 311 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 311 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 312 | 312 |
| 313 # Platforms that want to use HEVC demuxing will set this flag, but currently | |
| 314 # it's only Chromecast, which doesn't use GN builds yet. | |
| 315 enable_hevc_demuxing = false | |
|
wolenetz
2015/09/02 20:43:18
I don't know GN well enough: does this 'enable_hev
DaleCurtis
2015/09/02 21:20:41
This file should include the media_options.gni fil
servolk
2015/09/03 00:17:51
Done.
| |
| 316 if (enable_hevc_demuxing) { | |
| 317 defines += [ "ENABLE_HEVC_DEMUXING" ] | |
| 318 } | |
| 319 | |
| 313 configs += [ | 320 configs += [ |
| 314 "//build/config:precompiled_headers", | 321 "//build/config:precompiled_headers", |
| 315 "//build/config/compiler:no_size_t_to_int_warning", | 322 "//build/config/compiler:no_size_t_to_int_warning", |
| 316 ] | 323 ] |
| 317 | 324 |
| 318 deps = [ | 325 deps = [ |
| 319 ":browsertest_support", | 326 ":browsertest_support", |
| 320 ":web_ui_test_mojo_bindings", | 327 ":web_ui_test_mojo_bindings", |
| 321 "//base/allocator", | 328 "//base/allocator", |
| 322 "//base/test:test_support", | 329 "//base/test:test_support", |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 789 "//testing/gtest", | 796 "//testing/gtest", |
| 790 "//third_party/WebKit/public:blink", | 797 "//third_party/WebKit/public:blink", |
| 791 "//ui/base", | 798 "//ui/base", |
| 792 "//ui/gfx", | 799 "//ui/gfx", |
| 793 "//ui/gfx/geometry", | 800 "//ui/gfx/geometry", |
| 794 "//ui/gl", | 801 "//ui/gl", |
| 795 "//ui/gl:test_support", | 802 "//ui/gl:test_support", |
| 796 ] | 803 ] |
| 797 } | 804 } |
| 798 } | 805 } |
| OLD | NEW |