| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 | 168 |
| 169 # iOS and OS X encoders | 169 # iOS and OS X encoders |
| 170 if (is_ios || is_mac) { | 170 if (is_ios || is_mac) { |
| 171 sources += [ | 171 sources += [ |
| 172 "sender/h264_vt_encoder.cc", | 172 "sender/h264_vt_encoder.cc", |
| 173 "sender/h264_vt_encoder.h", | 173 "sender/h264_vt_encoder.h", |
| 174 ] | 174 ] |
| 175 | 175 |
| 176 libs += [ | 176 libs += [ |
| 177 "AudioToolbox.framework", | 177 "AudioToolbox.framework", |
| 178 "CoreMedia.framework", |
| 178 "CoreVideo.framework", | 179 "CoreVideo.framework", |
| 180 "VideoToolbox.framework", |
| 179 ] | 181 ] |
| 180 } | 182 } |
| 181 } | 183 } |
| 182 | 184 |
| 183 source_set("receiver") { | 185 source_set("receiver") { |
| 184 sources = [ | 186 sources = [ |
| 185 "cast_receiver.h", | 187 "cast_receiver.h", |
| 186 "net/rtp/cast_message_builder.cc", | 188 "net/rtp/cast_message_builder.cc", |
| 187 "net/rtp/cast_message_builder.h", | 189 "net/rtp/cast_message_builder.h", |
| 188 "net/rtp/frame_buffer.cc", | 190 "net/rtp/frame_buffer.cc", |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 ":sender", | 540 ":sender", |
| 539 ] | 541 ] |
| 540 } | 542 } |
| 541 | 543 |
| 542 static_library("cast_receiver") { | 544 static_library("cast_receiver") { |
| 543 complete_static_lib = true | 545 complete_static_lib = true |
| 544 deps = [ | 546 deps = [ |
| 545 ":receiver", | 547 ":receiver", |
| 546 ] | 548 ] |
| 547 } | 549 } |
| OLD | NEW |