| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 "//build/config:precompiled_headers", | 442 "//build/config:precompiled_headers", |
| 443 "//build/config/compiler:no_size_t_to_int_warning", | 443 "//build/config/compiler:no_size_t_to_int_warning", |
| 444 ] | 444 ] |
| 445 | 445 |
| 446 deps = [ | 446 deps = [ |
| 447 ":browsertest_base", | 447 ":browsertest_base", |
| 448 ":browsertest_support", | 448 ":browsertest_support", |
| 449 ":content_test_mojo_bindings", | 449 ":content_test_mojo_bindings", |
| 450 ":web_ui_test_mojo_bindings", | 450 ":web_ui_test_mojo_bindings", |
| 451 "//base/test:test_support", | 451 "//base/test:test_support", |
| 452 "//components/memory_coordinator/browser", |
| 452 "//components/scheduler", | 453 "//components/scheduler", |
| 453 "//content:resources", | 454 "//content:resources", |
| 454 "//content/app:both_for_content_tests", | 455 "//content/app:both_for_content_tests", |
| 455 "//content/browser:for_content_tests", | 456 "//content/browser:for_content_tests", |
| 456 "//content/browser/background_sync:background_sync_proto", | 457 "//content/browser/background_sync:background_sync_proto", |
| 457 "//content/common:mojo_bindings", | 458 "//content/common:mojo_bindings", |
| 458 "//content/gpu", | 459 "//content/gpu", |
| 459 "//content/public/browser", | 460 "//content/public/browser", |
| 460 "//content/public/child", | 461 "//content/public/child", |
| 461 "//content/public/common", | 462 "//content/public/common", |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 fuzzer_test("renderer_fuzzer") { | 924 fuzzer_test("renderer_fuzzer") { |
| 924 sources = [ | 925 sources = [ |
| 925 "renderer_fuzzer.cc", | 926 "renderer_fuzzer.cc", |
| 926 ] | 927 ] |
| 927 deps = [ | 928 deps = [ |
| 928 ":test_support", | 929 ":test_support", |
| 929 "//content/shell:content_shell_lib", | 930 "//content/shell:content_shell_lib", |
| 930 ] | 931 ] |
| 931 dict = "data/fuzzer_dictionaries/renderer_fuzzer.dict" | 932 dict = "data/fuzzer_dictionaries/renderer_fuzzer.dict" |
| 932 } | 933 } |
| OLD | NEW |