| 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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 "//build/config:precompiled_headers", | 438 "//build/config:precompiled_headers", |
| 439 "//build/config/compiler:no_size_t_to_int_warning", | 439 "//build/config/compiler:no_size_t_to_int_warning", |
| 440 ] | 440 ] |
| 441 | 441 |
| 442 deps = [ | 442 deps = [ |
| 443 ":browsertest_base", | 443 ":browsertest_base", |
| 444 ":browsertest_support", | 444 ":browsertest_support", |
| 445 ":content_test_mojo_bindings", | 445 ":content_test_mojo_bindings", |
| 446 ":web_ui_test_mojo_bindings", | 446 ":web_ui_test_mojo_bindings", |
| 447 "//base/test:test_support", | 447 "//base/test:test_support", |
| 448 "//components/memory_coordinator/browser", |
| 448 "//components/scheduler", | 449 "//components/scheduler", |
| 449 "//content:resources", | 450 "//content:resources", |
| 450 "//content/app:both_for_content_tests", | 451 "//content/app:both_for_content_tests", |
| 451 "//content/browser:for_content_tests", | 452 "//content/browser:for_content_tests", |
| 452 "//content/browser/background_sync:background_sync_proto", | 453 "//content/browser/background_sync:background_sync_proto", |
| 453 "//content/common:mojo_bindings", | 454 "//content/common:mojo_bindings", |
| 454 "//content/gpu", | 455 "//content/gpu", |
| 455 "//content/public/browser", | 456 "//content/public/browser", |
| 456 "//content/public/child", | 457 "//content/public/child", |
| 457 "//content/public/common", | 458 "//content/public/common", |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 | 917 |
| 917 fuzzer_test("renderer_fuzzer") { | 918 fuzzer_test("renderer_fuzzer") { |
| 918 sources = [ | 919 sources = [ |
| 919 "renderer_fuzzer.cc", | 920 "renderer_fuzzer.cc", |
| 920 ] | 921 ] |
| 921 deps = [ | 922 deps = [ |
| 922 ":test_support", | 923 ":test_support", |
| 923 "//content/shell:content_shell_lib", | 924 "//content/shell:content_shell_lib", |
| 924 ] | 925 ] |
| 925 } | 926 } |
| OLD | NEW |