| 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 = [ |
| 11 ":ios_core", | 11 ":ios_core", |
| 12 "./app:all", | 12 "./app:all", |
| 13 ] | 13 ] |
| 14 } | 14 } |
| 15 | 15 |
| 16 group("all_test") { | 16 group("all_test") { |
| 17 testonly = true | 17 testonly = true |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 ":ios_core_unit_tests", | 20 ":ios_core_unit_tests", |
| 21 ] | 21 ] |
| 22 } | 22 } |
| 23 | 23 |
| 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 "client_keyboard.h", |
| 29 "client_keyboard.mm", |
| 28 "host_preferences.h", | 30 "host_preferences.h", |
| 29 "host_preferences.mm", | 31 "host_preferences.mm", |
| 30 "host_preferences_persistence.h", | 32 "host_preferences_persistence.h", |
| 31 "key_input.h", | 33 "key_input.h", |
| 32 "key_input.mm", | 34 "key_input.mm", |
| 33 "key_map_us.h", | 35 "key_map_us.h", |
| 34 "keychain_wrapper.h", | 36 "keychain_wrapper.h", |
| 35 "keychain_wrapper.mm", | 37 "keychain_wrapper.mm", |
| 36 ] | 38 ] |
| 37 | 39 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 82 |
| 81 deps = [ | 83 deps = [ |
| 82 ":ios_core", | 84 ":ios_core", |
| 83 "//testing/gtest", | 85 "//testing/gtest", |
| 84 ] | 86 ] |
| 85 | 87 |
| 86 configs += [ "//build/config/compiler:enable_arc" ] | 88 configs += [ "//build/config/compiler:enable_arc" ] |
| 87 | 89 |
| 88 data = [] | 90 data = [] |
| 89 } | 91 } |
| OLD | NEW |