| 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("//remoting/remoting_version.gni") | 5 import("//remoting/remoting_version.gni") |
| 6 | 6 |
| 7 static_library("client") { | 7 static_library("client") { |
| 8 sources = [ | 8 sources = [ |
| 9 "audio_decode_scheduler.cc", | 9 "audio_decode_scheduler.cc", |
| 10 "audio_decode_scheduler.h", | 10 "audio_decode_scheduler.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "server_log_entry_client.cc", | 28 "server_log_entry_client.cc", |
| 29 "server_log_entry_client.h", | 29 "server_log_entry_client.h", |
| 30 "software_video_renderer.cc", | 30 "software_video_renderer.cc", |
| 31 "software_video_renderer.h", | 31 "software_video_renderer.h", |
| 32 "token_fetcher_proxy.cc", | 32 "token_fetcher_proxy.cc", |
| 33 "token_fetcher_proxy.h", | 33 "token_fetcher_proxy.h", |
| 34 "video_renderer.h", | 34 "video_renderer.h", |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 37 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 38 # TODO(GYP) Remove when WebRTC is converted. | |
| 39 configs += [ "//content:webrtc_stub_config" ] | |
| 40 | 38 |
| 41 defines = [ "VERSION=$version_full" ] | 39 defines = [ "VERSION=$version_full" ] |
| 42 | 40 |
| 43 deps = [ | 41 deps = [ |
| 44 "//remoting/base", | 42 "//remoting/base", |
| 45 "//remoting/protocol", | 43 "//remoting/protocol", |
| 46 "//third_party/libyuv", | 44 "//third_party/libyuv", |
| 47 #"//third_party/webrtc/modules/desktop_capture", TODO(GYP) | 45 "//third_party/webrtc/modules/desktop_capture", |
| 48 "//third_party/libwebm", | 46 "//third_party/libwebm", |
| 49 ] | 47 ] |
| 50 } | 48 } |
| OLD | NEW |