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