| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 | 616 |
| 618 defines = [] | 617 defines = [] |
| 619 sources = rebase_path(content_tests_gypi_values.content_unittests_sources, | 618 sources = rebase_path(content_tests_gypi_values.content_unittests_sources, |
| 620 ".", | 619 ".", |
| 621 "//content") | 620 "//content") |
| 622 | 621 |
| 623 if (is_android || is_linux || is_mac || is_win) { | 622 if (is_android || is_linux || is_mac || is_win) { |
| 624 data = [ | 623 data = [ |
| 625 "$root_out_dir/content_shell.pak", | 624 "$root_out_dir/content_shell.pak", |
| 626 "data/", | 625 "data/", |
| 627 "//net/data/ssl/certificates/", | |
| 628 "//media/test/data/", | 626 "//media/test/data/", |
| 629 ] | 627 ] |
| 630 } | 628 } |
| 631 | 629 |
| 632 configs += [ "//build/config:precompiled_headers" ] | 630 configs += [ "//build/config:precompiled_headers" ] |
| 633 | 631 |
| 634 deps = [ | 632 deps = [ |
| 635 ":content_test_mojo_bindings", | 633 ":content_test_mojo_bindings", |
| 636 ":test_support", | 634 ":test_support", |
| 637 "//base/test:test_support", | 635 "//base/test:test_support", |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 | 908 |
| 911 fuzzer_test("renderer_fuzzer") { | 909 fuzzer_test("renderer_fuzzer") { |
| 912 sources = [ | 910 sources = [ |
| 913 "renderer_fuzzer.cc", | 911 "renderer_fuzzer.cc", |
| 914 ] | 912 ] |
| 915 deps = [ | 913 deps = [ |
| 916 ":test_support", | 914 ":test_support", |
| 917 "//content/shell:content_shell_lib", | 915 "//content/shell:content_shell_lib", |
| 918 ] | 916 ] |
| 919 } | 917 } |
| OLD | NEW |