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

Side by Side Diff: media/cast/BUILD.gn

Issue 843583006: GN: Add -Wl,-z defs on linux and fix errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 component("cast") { 5 component("cast") {
6 deps = [ 6 deps = [
7 ":sender", 7 ":sender",
8 ":receiver", 8 ":receiver",
9 ] 9 ]
10 } 10 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "logging/stats_event_subscriber.h", 45 "logging/stats_event_subscriber.h",
46 ] 46 ]
47 47
48 public_deps = [ 48 public_deps = [
49 "//media/cast/logging/proto", 49 "//media/cast/logging/proto",
50 ] 50 ]
51 deps = [ 51 deps = [
52 "//base", 52 "//base",
53 "//crypto", 53 "//crypto",
54 "//net", 54 "//net",
55 "//third_party/zlib",
55 ] 56 ]
56 } 57 }
57 58
58 source_set("net") { 59 source_set("net") {
59 sources = [ 60 sources = [
60 "net/cast_transport_config.cc", 61 "net/cast_transport_config.cc",
61 "net/cast_transport_config.h", 62 "net/cast_transport_config.h",
62 "net/cast_transport_defines.h", 63 "net/cast_transport_defines.h",
63 "net/cast_transport_sender.h", 64 "net/cast_transport_sender.h",
64 "net/cast_transport_sender_impl.cc", 65 "net/cast_transport_sender_impl.cc",
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 sources = [ 365 sources = [
365 "test/utility/udp_proxy_main.cc", 366 "test/utility/udp_proxy_main.cc",
366 ] 367 ]
367 368
368 deps = [ 369 deps = [
369 ":test_support", 370 ":test_support",
370 "//base", 371 "//base",
371 "//net", 372 "//net",
372 ] 373 ]
373 } 374 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698