| 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("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
| 6 | 6 |
| 7 group("all") { | 7 group("all") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 } else { | 38 } else { |
| 39 # TODO(nicholss): Until we have a private implementation of this, stub it | 39 # TODO(nicholss): Until we have a private implementation of this, stub it |
| 40 # with the chromium version. We still want the logic of is_chrome_branded | 40 # with the chromium version. We still want the logic of is_chrome_branded |
| 41 # but to get the release builds building we will just reuse the file. | 41 # but to get the release builds building we will just reuse the file. |
| 42 sources += [ "host_preferences_persistence_chromium.mm" ] | 42 sources += [ "host_preferences_persistence_chromium.mm" ] |
| 43 } | 43 } |
| 44 | 44 |
| 45 public_deps = [ | 45 public_deps = [ |
| 46 "//remoting/client/ios/domain", | 46 "//remoting/client/ios/domain", |
| 47 "//remoting/client/ios/facade", | 47 "//remoting/client/ios/facade", |
| 48 "//remoting/client/ios/session", |
| 48 "//third_party/webrtc/base:rtc_base", | 49 "//third_party/webrtc/base:rtc_base", |
| 49 "//third_party/webrtc/modules/desktop_capture:primitives", | 50 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 50 ] | 51 ] |
| 51 | 52 |
| 52 deps = [ | 53 deps = [ |
| 53 "//base", | 54 "//base", |
| 54 "//remoting/protocol", | 55 "//remoting/protocol", |
| 55 ] | 56 ] |
| 56 | 57 |
| 57 libs = [ | 58 libs = [ |
| (...skipping 19 matching lines...) Expand all Loading... |
| 77 | 78 |
| 78 deps = [ | 79 deps = [ |
| 79 ":ios_core", | 80 ":ios_core", |
| 80 "//testing/gtest", | 81 "//testing/gtest", |
| 81 ] | 82 ] |
| 82 | 83 |
| 83 configs += [ "//build/config/compiler:enable_arc" ] | 84 configs += [ "//build/config/compiler:enable_arc" ] |
| 84 | 85 |
| 85 data = [] | 86 data = [] |
| 86 } | 87 } |
| OLD | NEW |