| 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 13 matching lines...) Expand all Loading... |
| 24 source_set("ios_core") { | 24 source_set("ios_core") { |
| 25 sources = [ | 25 sources = [ |
| 26 "client_gestures.h", | 26 "client_gestures.h", |
| 27 "client_gestures.mm", | 27 "client_gestures.mm", |
| 28 "host_preferences.h", | 28 "host_preferences.h", |
| 29 "host_preferences.mm", | 29 "host_preferences.mm", |
| 30 "host_preferences_persistence.h", | 30 "host_preferences_persistence.h", |
| 31 "key_input.h", | 31 "key_input.h", |
| 32 "key_input.mm", | 32 "key_input.mm", |
| 33 "key_map_us.h", | 33 "key_map_us.h", |
| 34 "keychain_wrapper.h", |
| 35 "keychain_wrapper.mm", |
| 34 ] | 36 ] |
| 35 | 37 |
| 36 if (!is_chrome_branded) { | 38 if (!is_chrome_branded) { |
| 37 sources += [ "host_preferences_persistence_chromium.mm" ] | 39 sources += [ "host_preferences_persistence_chromium.mm" ] |
| 38 } else { | 40 } else { |
| 39 # 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 |
| 40 # 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 |
| 41 # 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. |
| 42 sources += [ "host_preferences_persistence_chromium.mm" ] | 44 sources += [ "host_preferences_persistence_chromium.mm" ] |
| 43 } | 45 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 80 |
| 79 deps = [ | 81 deps = [ |
| 80 ":ios_core", | 82 ":ios_core", |
| 81 "//testing/gtest", | 83 "//testing/gtest", |
| 82 ] | 84 ] |
| 83 | 85 |
| 84 configs += [ "//build/config/compiler:enable_arc" ] | 86 configs += [ "//build/config/compiler:enable_arc" ] |
| 85 | 87 |
| 86 data = [] | 88 data = [] |
| 87 } | 89 } |
| OLD | NEW |