Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: content/test/BUILD.gn

Issue 2059493002: Revert of Make media/capture gn and gyps produce components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/BUILD.gn ('k') | media/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
74 "//mojo/edk/test:test_support", 73 "//mojo/edk/test:test_support",
75 "//net:test_support", 74 "//net:test_support",
76 "//services/shell/public/cpp", 75 "//services/shell/public/cpp",
77 "//skia", 76 "//skia",
78 "//storage/browser", 77 "//storage/browser",
79 "//storage/common", 78 "//storage/common",
80 "//testing/gmock", 79 "//testing/gmock",
81 "//testing/gtest", 80 "//testing/gtest",
82 "//ui/accessibility:ax_gen", 81 "//ui/accessibility:ax_gen",
83 "//ui/base", 82 "//ui/base",
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 173
175 if (is_win) { 174 if (is_win) {
176 deps += [ 175 deps += [
177 "//content:sandbox_helper_win", 176 "//content:sandbox_helper_win",
178 "//third_party/iaccessible2", 177 "//third_party/iaccessible2",
179 ] 178 ]
180 } 179 }
181 180
182 if (is_android) { 181 if (is_android) {
183 deps += [ 182 deps += [
184 "//media/capture/video/android:android",
185 "//ui/android", 183 "//ui/android",
186 "//ui/shell_dialogs", 184 "//ui/shell_dialogs",
187 ] 185 ]
188 } 186 }
189 187
190 if (is_win) { 188 if (is_win) {
191 deps += [ "//sandbox" ] 189 deps += [ "//sandbox" ]
192 } 190 }
193 191
194 if (v8_use_external_startup_data) { 192 if (v8_use_external_startup_data) {
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 "//device/bluetooth", 661 "//device/bluetooth",
664 "//device/bluetooth:mocks", 662 "//device/bluetooth:mocks",
665 "//gin", 663 "//gin",
666 "//gpu", 664 "//gpu",
667 "//gpu:test_support", 665 "//gpu:test_support",
668 "//ipc:test_support", 666 "//ipc:test_support",
669 "//media:shared_memory_support", 667 "//media:shared_memory_support",
670 "//media:test_support", 668 "//media:test_support",
671 "//media/audio:test_support", 669 "//media/audio:test_support",
672 "//media/base:test_support", 670 "//media/base:test_support",
673 "//media/capture",
674 "//media/midi:midi", 671 "//media/midi:midi",
675 "//mojo/edk/test:test_support", 672 "//mojo/edk/test:test_support",
676 "//mojo/public/cpp/bindings", 673 "//mojo/public/cpp/bindings",
677 "//net:extras", 674 "//net:extras",
678 "//net:test_support", 675 "//net:test_support",
679 "//ppapi/c", 676 "//ppapi/c",
680 "//printing", 677 "//printing",
681 "//skia", 678 "//skia",
682 "//sql", 679 "//sql",
683 "//sql:test_support", 680 "//sql:test_support",
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 908
912 fuzzer_test("renderer_fuzzer") { 909 fuzzer_test("renderer_fuzzer") {
913 sources = [ 910 sources = [
914 "renderer_fuzzer.cc", 911 "renderer_fuzzer.cc",
915 ] 912 ]
916 deps = [ 913 deps = [
917 ":test_support", 914 ":test_support",
918 "//content/shell:content_shell_lib", 915 "//content/shell:content_shell_lib",
919 ] 916 ]
920 } 917 }
OLDNEW
« no previous file with comments | « content/renderer/BUILD.gn ('k') | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698