OLD | NEW |
---|---|
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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
10 | 10 |
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
536 "//base", | 536 "//base", |
537 "//media", | 537 "//media", |
538 ] | 538 ] |
539 } | 539 } |
540 } | 540 } |
541 | 541 |
542 # Projects external to Chromium can build cast_sender and/or cast_receiver to | 542 # Projects external to Chromium can build cast_sender and/or cast_receiver to |
543 # produce libraries to link with their applications. Chromium targets should | 543 # produce libraries to link with their applications. Chromium targets should |
544 # not reference these. | 544 # not reference these. |
545 | 545 |
546 static_library("cast_sender") { | 546 group("cast_sender") { |
Nico
2016/05/13 21:03:47
actually, i think this change is wrong
| |
547 deps = [ | 547 deps = [ |
548 ":sender", | 548 ":sender", |
549 ] | 549 ] |
550 } | 550 } |
551 | 551 |
552 static_library("cast_receiver") { | 552 group("cast_receiver") { |
553 deps = [ | 553 deps = [ |
554 ":receiver", | 554 ":receiver", |
555 ] | 555 ] |
556 } | 556 } |
OLD | NEW |