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

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

Issue 2829853003: Remove crufty bridge code from old CRD iOS app. (Closed)
Patch Set: Fix remoting/display proto import issue. Created 3 years, 8 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 | « remoting/client/display/BUILD.gn ('k') | remoting/client/ios/DEPS » ('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 = [
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
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 }
OLDNEW
« no previous file with comments | « remoting/client/display/BUILD.gn ('k') | remoting/client/ios/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698