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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "//content/public/browser", | 63 "//content/public/browser", |
64 "//content/public/child", | 64 "//content/public/child", |
65 "//content/public/renderer", | 65 "//content/public/renderer", |
66 "//content/public/utility", | 66 "//content/public/utility", |
67 "//content/renderer:for_content_tests", | 67 "//content/renderer:for_content_tests", |
68 "//content/shell:pak", | 68 "//content/shell:pak", |
69 "//content/utility:for_content_tests", | 69 "//content/utility:for_content_tests", |
70 "//ipc:test_support", | 70 "//ipc:test_support", |
71 "//ipc/mojo", | 71 "//ipc/mojo", |
72 "//media", | 72 "//media", |
| 73 "//media/capture", |
73 "//mojo/edk/test:test_support", | 74 "//mojo/edk/test:test_support", |
74 "//net:test_support", | 75 "//net:test_support", |
75 "//services/shell/public/cpp", | 76 "//services/shell/public/cpp", |
76 "//skia", | 77 "//skia", |
77 "//storage/browser", | 78 "//storage/browser", |
78 "//storage/common", | 79 "//storage/common", |
79 "//testing/gmock", | 80 "//testing/gmock", |
80 "//testing/gtest", | 81 "//testing/gtest", |
81 "//ui/accessibility:ax_gen", | 82 "//ui/accessibility:ax_gen", |
82 "//ui/base", | 83 "//ui/base", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 | 174 |
174 if (is_win) { | 175 if (is_win) { |
175 deps += [ | 176 deps += [ |
176 "//content:sandbox_helper_win", | 177 "//content:sandbox_helper_win", |
177 "//third_party/iaccessible2", | 178 "//third_party/iaccessible2", |
178 ] | 179 ] |
179 } | 180 } |
180 | 181 |
181 if (is_android) { | 182 if (is_android) { |
182 deps += [ | 183 deps += [ |
| 184 "//media/capture/video/android:android", |
183 "//ui/android", | 185 "//ui/android", |
184 "//ui/shell_dialogs", | 186 "//ui/shell_dialogs", |
185 ] | 187 ] |
186 } | 188 } |
187 | 189 |
188 if (is_win) { | 190 if (is_win) { |
189 deps += [ "//sandbox" ] | 191 deps += [ "//sandbox" ] |
190 } | 192 } |
191 | 193 |
192 if (v8_use_external_startup_data) { | 194 if (v8_use_external_startup_data) { |
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 "//device/bluetooth", | 662 "//device/bluetooth", |
661 "//device/bluetooth:mocks", | 663 "//device/bluetooth:mocks", |
662 "//gin", | 664 "//gin", |
663 "//gpu", | 665 "//gpu", |
664 "//gpu:test_support", | 666 "//gpu:test_support", |
665 "//ipc:test_support", | 667 "//ipc:test_support", |
666 "//media:shared_memory_support", | 668 "//media:shared_memory_support", |
667 "//media:test_support", | 669 "//media:test_support", |
668 "//media/audio:test_support", | 670 "//media/audio:test_support", |
669 "//media/base:test_support", | 671 "//media/base:test_support", |
| 672 "//media/capture", |
670 "//media/midi:midi", | 673 "//media/midi:midi", |
671 "//mojo/edk/test:test_support", | 674 "//mojo/edk/test:test_support", |
672 "//mojo/public/cpp/bindings", | 675 "//mojo/public/cpp/bindings", |
673 "//net:extras", | 676 "//net:extras", |
674 "//net:test_support", | 677 "//net:test_support", |
675 "//ppapi/c", | 678 "//ppapi/c", |
676 "//printing", | 679 "//printing", |
677 "//skia", | 680 "//skia", |
678 "//sql", | 681 "//sql", |
679 "//sql:test_support", | 682 "//sql:test_support", |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 | 910 |
908 fuzzer_test("renderer_fuzzer") { | 911 fuzzer_test("renderer_fuzzer") { |
909 sources = [ | 912 sources = [ |
910 "renderer_fuzzer.cc", | 913 "renderer_fuzzer.cc", |
911 ] | 914 ] |
912 deps = [ | 915 deps = [ |
913 ":test_support", | 916 ":test_support", |
914 "//content/shell:content_shell_lib", | 917 "//content/shell:content_shell_lib", |
915 ] | 918 ] |
916 } | 919 } |
OLD | NEW |