| 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 "./bridge:all", | |
| 14 ] | 13 ] |
| 15 } | 14 } |
| 16 | 15 |
| 17 group("all_test") { | 16 group("all_test") { |
| 18 testonly = true | 17 testonly = true |
| 19 | 18 |
| 20 deps = [ | 19 deps = [ |
| 21 ":ios_core_unit_tests", | 20 ":ios_core_unit_tests", |
| 22 "./bridge:bridge_unit_tests", | |
| 23 ] | 21 ] |
| 24 } | 22 } |
| 25 | 23 |
| 26 source_set("ios_core") { | 24 source_set("ios_core") { |
| 27 sources = [ | 25 sources = [ |
| 28 "client_gestures.h", | 26 "client_gestures.h", |
| 29 "client_gestures.mm", | 27 "client_gestures.mm", |
| 30 "host_preferences.h", | 28 "host_preferences.h", |
| 31 "host_preferences.mm", | 29 "host_preferences.mm", |
| 32 "host_preferences_persistence.h", | 30 "host_preferences_persistence.h", |
| 33 "key_input.h", | 31 "key_input.h", |
| 34 "key_input.mm", | 32 "key_input.mm", |
| 35 "key_map_us.h", | 33 "key_map_us.h", |
| 36 "utility.h", | |
| 37 "utility.mm", | |
| 38 ] | 34 ] |
| 39 | 35 |
| 40 if (!is_chrome_branded) { | 36 if (!is_chrome_branded) { |
| 41 sources += [ "host_preferences_persistence_chromium.mm" ] | 37 sources += [ "host_preferences_persistence_chromium.mm" ] |
| 42 } else { | 38 } else { |
| 43 # TODO(nicholss): Until we have a private implementation of this, stub it | 39 # 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 | 40 # 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. | 41 # but to get the release builds building we will just reuse the file. |
| 46 sources += [ "host_preferences_persistence_chromium.mm" ] | 42 sources += [ "host_preferences_persistence_chromium.mm" ] |
| 47 } | 43 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 77 |
| 82 deps = [ | 78 deps = [ |
| 83 ":ios_core", | 79 ":ios_core", |
| 84 "//testing/gtest", | 80 "//testing/gtest", |
| 85 ] | 81 ] |
| 86 | 82 |
| 87 configs += [ "//build/config/compiler:enable_arc" ] | 83 configs += [ "//build/config/compiler:enable_arc" ] |
| 88 | 84 |
| 89 data = [] | 85 data = [] |
| 90 } | 86 } |
| OLD | NEW |