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

Side by Side Diff: chrome/common/media_router/BUILD.gn

Issue 2834573003: [Media Router] Remove duplicate entries in BUILD (Closed)
Patch Set: Nit fix Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 static_library("router") { 5 static_library("router") {
6 public_deps = [ 6 public_deps = [
7 "mojo:media_controller", 7 "mojo:media_controller",
8 "//base:base", 8 "//base:base",
9 "//base:i18n", 9 "//base:i18n",
10 "//net:net", 10 "//net:net",
(...skipping 19 matching lines...) Expand all
30 "route_message.cc", 30 "route_message.cc",
31 "route_message.h", 31 "route_message.h",
32 "route_request_result.cc", 32 "route_request_result.cc",
33 "route_request_result.h", 33 "route_request_result.h",
34 ] 34 ]
35 35
36 if (!is_android) { 36 if (!is_android) {
37 public_deps += [ "mojo:media_router" ] 37 public_deps += [ "mojo:media_router" ]
38 } 38 }
39 } 39 }
40
41 source_set("unit_tests") {
42 testonly = true
43 public_deps = [
44 ":router",
45 "//base/test:test_support",
46 "//testing/gmock",
47 "//testing/gtest",
48 "//third_party/icu",
49 ]
50
51 sources = [
52 "discovery/media_sink_internal_unittest.cc",
53 "issue_unittest.cc",
54 "media_route_unittest.cc",
55 "media_sink_unittest.cc",
56 "media_source_helper_unittest.cc",
57 "media_source_unittest.cc",
58 ]
59
60 if (!is_android) {
61 public_deps += [ "mojo:media_router_test_interfaces" ]
62 sources += [ "mojo/media_router_struct_traits_unittest.cc" ]
63 }
64 }
OLDNEW
« 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