| 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 12 matching lines...) Expand all Loading... |
| 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", | 28 "client_keyboard.h", |
| 29 "client_keyboard.mm", | 29 "client_keyboard.mm", |
| 30 "host_preferences.h", | 30 "host_preferences.h", |
| 31 "host_preferences.mm", | 31 "host_preferences.mm", |
| 32 "host_preferences_persistence.h", | 32 "host_preferences_persistence.h", |
| 33 "key_input.h", | |
| 34 "key_input.mm", | |
| 35 "key_map_us.h", | |
| 36 "keychain_wrapper.h", | 33 "keychain_wrapper.h", |
| 37 "keychain_wrapper.mm", | 34 "keychain_wrapper.mm", |
| 38 ] | 35 ] |
| 39 | 36 |
| 40 if (!is_chrome_branded) { | 37 if (!is_chrome_branded) { |
| 41 sources += [ "host_preferences_persistence_chromium.mm" ] | 38 sources += [ "host_preferences_persistence_chromium.mm" ] |
| 42 } else { | 39 } else { |
| 43 # TODO(nicholss): Until we have a private implementation of this, stub it | 40 # 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 | 41 # 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. | 42 # but to get the release builds building we will just reuse the file. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 69 } | 66 } |
| 70 | 67 |
| 71 source_set("ios_core_unit_tests") { | 68 source_set("ios_core_unit_tests") { |
| 72 testonly = true | 69 testonly = true |
| 73 | 70 |
| 74 include_dirs = [ | 71 include_dirs = [ |
| 75 "$root_gen_dir", | 72 "$root_gen_dir", |
| 76 "//third_party/protobuf/src", | 73 "//third_party/protobuf/src", |
| 77 ] | 74 ] |
| 78 | 75 |
| 79 sources = [ | 76 sources = [] |
| 80 "key_input_unittest.mm", | |
| 81 ] | |
| 82 | 77 |
| 83 deps = [ | 78 deps = [ |
| 84 ":ios_core", | 79 ":ios_core", |
| 85 "//testing/gtest", | 80 "//testing/gtest", |
| 86 ] | 81 ] |
| 87 | 82 |
| 88 configs += [ "//build/config/compiler:enable_arc" ] | 83 configs += [ "//build/config/compiler:enable_arc" ] |
| 89 | 84 |
| 90 data = [] | 85 data = [] |
| 91 } | 86 } |
| OLD | NEW |