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

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

Issue 2628403002: Migrating host preferences, runtime, and gestures to chromium from internal. (Closed)
Patch Set: Rename impl to match new header file name. Created 3 years, 11 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_runtime.h » ('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")
6
5 group("all") { 7 group("all") {
6 testonly = true 8 testonly = true
7 9
8 deps = [ 10 deps = [
9 ":ios_core", 11 ":ios_core",
10 ":main", 12 ":main",
11 "./bridge:all", 13 "./bridge:all",
12 ] 14 ]
13 } 15 }
14 16
(...skipping 12 matching lines...) Expand all
27 "app_delegate.mm", 29 "app_delegate.mm",
28 "example_view_controller.h", 30 "example_view_controller.h",
29 "example_view_controller.mm", 31 "example_view_controller.mm",
30 "main.mm", 32 "main.mm",
31 ] 33 ]
32 34
33 deps = [ 35 deps = [
34 "//base", 36 "//base",
35 "//remoting/base", 37 "//remoting/base",
36 "//remoting/client", 38 "//remoting/client",
39 "//remoting/client/ios/bridge",
37 "//remoting/protocol", 40 "//remoting/protocol",
38 "//third_party/google_toolbox_for_mac", 41 "//third_party/google_toolbox_for_mac",
39 "//ui/base", 42 "//ui/base",
40 "//ui/gfx", 43 "//ui/gfx",
41 "//ui/resources", 44 "//ui/resources",
42 ] 45 ]
43 46
44 configs += [ "//build/config/compiler:enable_arc" ] 47 configs += [ "//build/config/compiler:enable_arc" ]
45 } 48 }
46 49
47 source_set("ios_core") { 50 source_set("ios_core") {
48 sources = [ 51 sources = [
52 "app_runtime.cc",
53 "app_runtime.h",
54 "client_gestures.h",
55 "client_gestures.mm",
49 "host.h", 56 "host.h",
50 "host.mm", 57 "host.mm",
58 "host_preferences.h",
59 "host_preferences.mm",
60 "host_preferences_persistence.h",
51 "key_input.h", 61 "key_input.h",
52 "key_input.mm", 62 "key_input.mm",
53 "key_map_us.h", 63 "key_map_us.h",
54 "utility.h", 64 "utility.h",
55 "utility.mm", 65 "utility.mm",
56 ] 66 ]
57 67
68 if (!is_chrome_branded) {
69 sources += [ "host_preferences_persistence_chromium.mm" ]
70 }
71
58 public_deps = [ 72 public_deps = [
59 "//third_party/webrtc/base:rtc_base", 73 "//third_party/webrtc/base:rtc_base",
60 "//third_party/webrtc/modules/desktop_capture:primitives", 74 "//third_party/webrtc/modules/desktop_capture:primitives",
61 ] 75 ]
62 76
63 deps = [ 77 deps = [
64 "//base", 78 "//base",
79 "//remoting/protocol",
65 ] 80 ]
66 81
67 libs = [ 82 libs = [
68 "CoreGraphics.framework", 83 "CoreGraphics.framework",
69 "GLKit.framework", 84 "GLKit.framework",
70 "OpenGLES.framework", 85 "OpenGLES.framework",
71 ] 86 ]
72 87
73 configs += [ "//build/config/compiler:enable_arc" ] 88 configs += [ "//build/config/compiler:enable_arc" ]
74 } 89 }
(...skipping 14 matching lines...) Expand all
89 104
90 deps = [ 105 deps = [
91 ":ios_core", 106 ":ios_core",
92 "//testing/gtest", 107 "//testing/gtest",
93 ] 108 ]
94 109
95 configs += [ "//build/config/compiler:enable_arc" ] 110 configs += [ "//build/config/compiler:enable_arc" ]
96 111
97 data = [] 112 data = []
98 } 113 }
OLDNEW
« no previous file with comments | « no previous file | remoting/client/ios/app_runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698