Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/features.gni") | |
| 6 | |
| 7 component("renderer") { | |
| 8 testonly = true | |
| 9 | |
| 10 sources = [ | |
| 11 "mock_video_capturer_source.cc", | |
| 12 "mock_video_capturer_source.h", | |
| 13 ] | |
| 14 | |
| 15 if (enable_webrtc) { | |
| 16 deps = [ | |
| 17 "//content/public/renderer", | |
|
sadrul
2015/10/06 15:23:28
test_runner should not depend on content.
| |
| 18 ] | |
| 19 } | |
| 20 } | |
| OLD | NEW |