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