Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Side by Side Diff: remoting/client/ios/BUILD.gn

Issue 2854273002: [CRD iOS] Implementing save to keychain and user defaults for login info. Refactor remoting service. (Closed)
Patch Set: Removing authenticate with refresh token from pub api. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/client/ios/app/app_delegate.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | remoting/client/ios/app/app_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698