| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 } | 396 } |
| 397 | 397 |
| 398 sources = rebase_path(content_tests_gypi_values.content_browsertests_sources, | 398 sources = rebase_path(content_tests_gypi_values.content_browsertests_sources, |
| 399 ".", | 399 ".", |
| 400 "//content") | 400 "//content") |
| 401 | 401 |
| 402 if (is_android || is_linux || is_mac || is_win) { | 402 if (is_android || is_linux || is_mac || is_win) { |
| 403 data = [ | 403 data = [ |
| 404 "$root_out_dir/content_shell.pak", | 404 "$root_out_dir/content_shell.pak", |
| 405 "data/", | 405 "data/", |
| 406 "//net/data/", | |
| 407 "//media/test/data/", | 406 "//media/test/data/", |
| 408 ] | 407 ] |
| 409 | 408 |
| 410 if (!is_android) { | 409 if (!is_android) { |
| 411 data += [ | 410 data += [ |
| 412 "//net/tools/testserver/", | 411 "//net/tools/testserver/", |
| 413 "//ppapi/tests/test_case.html", | 412 "//ppapi/tests/test_case.html", |
| 414 "//ppapi/tests/test_page.css", | 413 "//ppapi/tests/test_page.css", |
| 415 "//third_party/pyftpdlib/", | 414 "//third_party/pyftpdlib/", |
| 416 "//third_party/pywebsocket/", | 415 "//third_party/pywebsocket/", |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 | 617 |
| 619 defines = [] | 618 defines = [] |
| 620 sources = rebase_path(content_tests_gypi_values.content_unittests_sources, | 619 sources = rebase_path(content_tests_gypi_values.content_unittests_sources, |
| 621 ".", | 620 ".", |
| 622 "//content") | 621 "//content") |
| 623 | 622 |
| 624 if (is_android || is_linux || is_mac || is_win) { | 623 if (is_android || is_linux || is_mac || is_win) { |
| 625 data = [ | 624 data = [ |
| 626 "$root_out_dir/content_shell.pak", | 625 "$root_out_dir/content_shell.pak", |
| 627 "data/", | 626 "data/", |
| 628 "//net/data/ssl/certificates/", | |
| 629 "//media/test/data/", | 627 "//media/test/data/", |
| 630 ] | 628 ] |
| 631 } | 629 } |
| 632 | 630 |
| 633 configs += [ "//build/config:precompiled_headers" ] | 631 configs += [ "//build/config:precompiled_headers" ] |
| 634 | 632 |
| 635 deps = [ | 633 deps = [ |
| 636 ":content_test_mojo_bindings", | 634 ":content_test_mojo_bindings", |
| 637 ":test_support", | 635 ":test_support", |
| 638 "//base/test:test_support", | 636 "//base/test:test_support", |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 | 909 |
| 912 fuzzer_test("renderer_fuzzer") { | 910 fuzzer_test("renderer_fuzzer") { |
| 913 sources = [ | 911 sources = [ |
| 914 "renderer_fuzzer.cc", | 912 "renderer_fuzzer.cc", |
| 915 ] | 913 ] |
| 916 deps = [ | 914 deps = [ |
| 917 ":test_support", | 915 ":test_support", |
| 918 "//content/shell:content_shell_lib", | 916 "//content/shell:content_shell_lib", |
| 919 ] | 917 ] |
| 920 } | 918 } |
| OLD | NEW |