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

Side by Side Diff: chrome/browser/media/BUILD.gn

Issue 2951523002: Media Remoting: Add mojo interfaces between browser and extension. (Closed)
Patch Set: Fix unittests. Created 3 years, 5 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
(Empty)
1 # Copyright 2016 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 # TODO(miu): Decentralize build configuration: Move source files and deps
6 # specific to chrome/browser/media sources from chrome/browser/BULID.gn and
7 # chrome/test/BUILD.gn into this BUILD.gn file. Also, remove the root BUILD.gn
8 # dependency on the cast_remoting_connector_fuzzer target after this is done.
9
10 import("//testing/libfuzzer/fuzzer_test.gni")
11
12 fuzzer_test("cast_remoting_connector_fuzzer") {
13 sources = [
14 "cast_remoting_connector_fuzzertest.cc",
15 "cast_remoting_connector_messaging.cc",
16 "cast_remoting_connector_messaging.h",
17 ]
18 deps = [
19 "//base",
20 ]
21 libfuzzer_options = [ "max_len = 128" ]
22 seed_corpus = "../../test/data/cast/cast_remoting_connector_fuzz_corpus"
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698