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