| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 | 6 |
| 7 group("all") { | 7 group("all") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "client_proxy_delegate_wrapper.mm", | 29 "client_proxy_delegate_wrapper.mm", |
| 30 "frame_consumer_bridge.cc", | 30 "frame_consumer_bridge.cc", |
| 31 "frame_consumer_bridge.h", | 31 "frame_consumer_bridge.h", |
| 32 "host_proxy.h", | 32 "host_proxy.h", |
| 33 "host_proxy.mm", | 33 "host_proxy.mm", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 public_deps = [ | 36 public_deps = [ |
| 37 "//remoting/protocol", | 37 "//remoting/protocol", |
| 38 "//third_party/webrtc/base:rtc_base", | 38 "//third_party/webrtc/base:rtc_base", |
| 39 "//third_party/webrtc/base:rtc_task_runner", | |
| 40 "//third_party/webrtc/modules/desktop_capture:primitives", | 39 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 41 ] | 40 ] |
| 42 | 41 |
| 43 deps = [ | 42 deps = [ |
| 44 "//base", | 43 "//base", |
| 45 "//net", | 44 "//net", |
| 46 "//remoting/client/ios:ios_core", | 45 "//remoting/client/ios:ios_core", |
| 47 "//remoting/resources:strings", | 46 "//remoting/resources:strings", |
| 48 "//ui/base", | 47 "//ui/base", |
| 49 "//ui/gfx", | 48 "//ui/gfx", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 84 |
| 86 deps = [ | 85 deps = [ |
| 87 ":bridge", | 86 ":bridge", |
| 88 "//testing/gtest", | 87 "//testing/gtest", |
| 89 ] | 88 ] |
| 90 | 89 |
| 91 configs += [ "//build/config/compiler:enable_arc" ] | 90 configs += [ "//build/config/compiler:enable_arc" ] |
| 92 | 91 |
| 93 data = [] | 92 data = [] |
| 94 } | 93 } |
| OLD | NEW |