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

Unified Diff: media/audio/BUILD.gn

Issue 1965713003: media: Fix gn deps on media/audio/* targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use //media to avoid Windows issues Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/BUILD.gn
diff --git a/media/audio/BUILD.gn b/media/audio/BUILD.gn
index 6e7fe3fea26650bd35212e77b9d990c57092b9d4..4f2dd230619360ee6d2d76dd8c9fb738e8af1e38 100644
--- a/media/audio/BUILD.gn
+++ b/media/audio/BUILD.gn
@@ -123,7 +123,12 @@ source_set("audio") {
"virtual_audio_output_stream.cc",
"virtual_audio_output_stream.h",
]
- deps = []
+ deps = [
+ "//base",
+ "//media:shared_memory_support",
+ "//media/base",
+ "//url",
+ ]
libs = []
configs += [
":platform_config",
@@ -281,7 +286,10 @@ source_set("test_support") {
]
configs += [ ":platform_config" ]
deps = [
+ "//base",
+ "//media",
"//testing/gmock",
+ "//testing/gtest",
]
configs += [ "//media:media_config" ]
}
@@ -304,6 +312,9 @@ source_set("unittests") {
]
deps = [
":test_support",
+ "//base",
+ "//base/test:test_support",
+ "//media",
"//media/base:test_support",
"//testing/gmock",
"//testing/gtest",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698