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

Unified Diff: components/test_runner/renderer/BUILD.gn

Issue 1371373002: Extend components/test_runner's generated WebMediaStream to have a ChromeMock VideoTrack and Source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mazzoni@ comments, web_view/test_runner build, rebase, cleaned up requestUserMedia() Created 5 years, 2 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 | « components/test_runner/mock_web_user_media_client.cc ('k') | components/test_runner/renderer/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/renderer/BUILD.gn
diff --git a/components/test_runner/renderer/BUILD.gn b/components/test_runner/renderer/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..e613b0098add6dfe54af04605768346c6809db21
--- /dev/null
+++ b/components/test_runner/renderer/BUILD.gn
@@ -0,0 +1,20 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/features.gni")
+
+component("renderer") {
+ testonly = true
+
+ sources = [
+ "mock_video_capturer_source.cc",
+ "mock_video_capturer_source.h",
+ ]
+
+ if (enable_webrtc) {
+ deps = [
+ "//content/public/renderer",
sadrul 2015/10/06 15:23:28 test_runner should not depend on content.
+ ]
+ }
+}
« no previous file with comments | « components/test_runner/mock_web_user_media_client.cc ('k') | components/test_runner/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698