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

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

Issue 2031073002: Make media/capture gn and gyps produce components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added again 'Android missed dep' PS5 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",
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
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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 "//device/bluetooth", 663 "//device/bluetooth",
662 "//device/bluetooth:mocks", 664 "//device/bluetooth:mocks",
663 "//gin", 665 "//gin",
664 "//gpu", 666 "//gpu",
665 "//gpu:test_support", 667 "//gpu:test_support",
666 "//ipc:test_support", 668 "//ipc:test_support",
667 "//media:shared_memory_support", 669 "//media:shared_memory_support",
668 "//media:test_support", 670 "//media:test_support",
669 "//media/audio:test_support", 671 "//media/audio:test_support",
670 "//media/base:test_support", 672 "//media/base:test_support",
673 "//media/capture",
671 "//media/midi:midi", 674 "//media/midi:midi",
672 "//mojo/edk/test:test_support", 675 "//mojo/edk/test:test_support",
673 "//mojo/public/cpp/bindings", 676 "//mojo/public/cpp/bindings",
674 "//net:extras", 677 "//net:extras",
675 "//net:test_support", 678 "//net:test_support",
676 "//ppapi/c", 679 "//ppapi/c",
677 "//printing", 680 "//printing",
678 "//skia", 681 "//skia",
679 "//sql", 682 "//sql",
680 "//sql:test_support", 683 "//sql:test_support",
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 911
909 fuzzer_test("renderer_fuzzer") { 912 fuzzer_test("renderer_fuzzer") {
910 sources = [ 913 sources = [
911 "renderer_fuzzer.cc", 914 "renderer_fuzzer.cc",
912 ] 915 ]
913 deps = [ 916 deps = [
914 ":test_support", 917 ":test_support",
915 "//content/shell:content_shell_lib", 918 "//content/shell:content_shell_lib",
916 ] 919 ]
917 } 920 }
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