| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 static_library("cast_sender") { |
| 547 complete_static_lib = true |
| 547 deps = [ | 548 deps = [ |
| 548 ":sender", | 549 ":sender", |
| 549 ] | 550 ] |
| 550 } | 551 } |
| 551 | 552 |
| 552 static_library("cast_receiver") { | 553 static_library("cast_receiver") { |
| 554 complete_static_lib = true |
| 553 deps = [ | 555 deps = [ |
| 554 ":receiver", | 556 ":receiver", |
| 555 ] | 557 ] |
| 556 } | 558 } |
| OLD | NEW |