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

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

Issue 2068763002: Re-Reland: Make media/capture gn and gyps produce components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable warning 4267 in Win capture.gyp (probs. lost in the previous relanding). Rebase 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
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 "//content/public/child", 67 "//content/public/child",
68 "//content/public/renderer", 68 "//content/public/renderer",
69 "//content/public/utility", 69 "//content/public/utility",
70 "//content/renderer:for_content_tests", 70 "//content/renderer:for_content_tests",
71 "//content/shell:pak", 71 "//content/shell:pak",
72 "//content/utility:for_content_tests", 72 "//content/utility:for_content_tests",
73 "//device/nfc:mojo_bindings", 73 "//device/nfc:mojo_bindings",
74 "//ipc:test_support", 74 "//ipc:test_support",
75 "//ipc/mojo", 75 "//ipc/mojo",
76 "//media", 76 "//media",
77 "//media/capture",
77 "//mojo/edk/system", 78 "//mojo/edk/system",
78 "//mojo/edk/test:test_support", 79 "//mojo/edk/test:test_support",
79 "//net:test_support", 80 "//net:test_support",
80 "//services/shell/public/cpp", 81 "//services/shell/public/cpp",
81 "//skia", 82 "//skia",
82 "//storage/browser", 83 "//storage/browser",
83 "//storage/common", 84 "//storage/common",
84 "//testing/gmock", 85 "//testing/gmock",
85 "//testing/gtest", 86 "//testing/gtest",
86 "//ui/accessibility:ax_gen", 87 "//ui/accessibility:ax_gen",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 179
179 if (is_win) { 180 if (is_win) {
180 deps += [ 181 deps += [
181 "//content:sandbox_helper_win", 182 "//content:sandbox_helper_win",
182 "//third_party/iaccessible2", 183 "//third_party/iaccessible2",
183 ] 184 ]
184 } 185 }
185 186
186 if (is_android) { 187 if (is_android) {
187 deps += [ 188 deps += [
189 "//media/capture/video/android:android",
188 "//ui/android", 190 "//ui/android",
189 "//ui/shell_dialogs", 191 "//ui/shell_dialogs",
190 ] 192 ]
191 } 193 }
192 194
193 if (is_win) { 195 if (is_win) {
194 deps += [ "//sandbox" ] 196 deps += [ "//sandbox" ]
195 } 197 }
196 198
197 if (v8_use_external_startup_data) { 199 if (v8_use_external_startup_data) {
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 "//device/bluetooth", 666 "//device/bluetooth",
665 "//device/bluetooth:mocks", 667 "//device/bluetooth:mocks",
666 "//gin", 668 "//gin",
667 "//gpu", 669 "//gpu",
668 "//gpu:test_support", 670 "//gpu:test_support",
669 "//ipc:test_support", 671 "//ipc:test_support",
670 "//media:shared_memory_support", 672 "//media:shared_memory_support",
671 "//media:test_support", 673 "//media:test_support",
672 "//media/audio:test_support", 674 "//media/audio:test_support",
673 "//media/base:test_support", 675 "//media/base:test_support",
676 "//media/capture",
674 "//media/midi:midi", 677 "//media/midi:midi",
675 "//mojo/edk/test:test_support", 678 "//mojo/edk/test:test_support",
676 "//mojo/public/cpp/bindings", 679 "//mojo/public/cpp/bindings",
677 "//net:extras", 680 "//net:extras",
678 "//net:test_support", 681 "//net:test_support",
679 "//ppapi/c", 682 "//ppapi/c",
680 "//printing", 683 "//printing",
681 "//skia", 684 "//skia",
682 "//sql", 685 "//sql",
683 "//sql:test_support", 686 "//sql:test_support",
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 914
912 fuzzer_test("renderer_fuzzer") { 915 fuzzer_test("renderer_fuzzer") {
913 sources = [ 916 sources = [
914 "renderer_fuzzer.cc", 917 "renderer_fuzzer.cc",
915 ] 918 ]
916 deps = [ 919 deps = [
917 ":test_support", 920 ":test_support",
918 "//content/shell:content_shell_lib", 921 "//content/shell:content_shell_lib",
919 ] 922 ]
920 } 923 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698