| 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("//media/media_options.gni") |
| 10 import("//testing/test.gni") | 11 import("//testing/test.gni") |
| 11 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 12 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 12 | 13 |
| 13 content_tests_gypi_values = | 14 content_tests_gypi_values = |
| 14 exec_script("//build/gypi_to_gn.py", | 15 exec_script("//build/gypi_to_gn.py", |
| 15 [ | 16 [ |
| 16 rebase_path("../content_tests.gypi"), | 17 rebase_path("../content_tests.gypi"), |
| 17 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", | 18 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", |
| 18 ], | 19 ], |
| 19 "scope", | 20 "scope", |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 ] | 304 ] |
| 304 } | 305 } |
| 305 if (is_win) { | 306 if (is_win) { |
| 306 data += [ "$root_out_dir/plugins/np_test_netscape_plugin.dll" ] | 307 data += [ "$root_out_dir/plugins/np_test_netscape_plugin.dll" ] |
| 307 } | 308 } |
| 308 } | 309 } |
| 309 } | 310 } |
| 310 | 311 |
| 311 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 312 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 312 | 313 |
| 314 if (proprietary_codecs && enable_hevc_demuxing) { |
| 315 defines += [ "ENABLE_HEVC_DEMUXING" ] |
| 316 } |
| 317 |
| 313 configs += [ | 318 configs += [ |
| 314 "//build/config:precompiled_headers", | 319 "//build/config:precompiled_headers", |
| 315 "//build/config/compiler:no_size_t_to_int_warning", | 320 "//build/config/compiler:no_size_t_to_int_warning", |
| 316 ] | 321 ] |
| 317 | 322 |
| 318 deps = [ | 323 deps = [ |
| 319 ":browsertest_support", | 324 ":browsertest_support", |
| 320 ":web_ui_test_mojo_bindings", | 325 ":web_ui_test_mojo_bindings", |
| 321 "//base/allocator", | 326 "//base/allocator", |
| 322 "//base/test:test_support", | 327 "//base/test:test_support", |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 "//testing/gtest", | 794 "//testing/gtest", |
| 790 "//third_party/WebKit/public:blink", | 795 "//third_party/WebKit/public:blink", |
| 791 "//ui/base", | 796 "//ui/base", |
| 792 "//ui/gfx", | 797 "//ui/gfx", |
| 793 "//ui/gfx/geometry", | 798 "//ui/gfx/geometry", |
| 794 "//ui/gl", | 799 "//ui/gl", |
| 795 "//ui/gl:test_support", | 800 "//ui/gl:test_support", |
| 796 ] | 801 ] |
| 797 } | 802 } |
| 798 } | 803 } |
| OLD | NEW |