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

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

Issue 2555803002: Adding the iOS app and integration example with GlRenderer. (Closed)
Patch Set: Adding todo reminder for ES3 vs ES2. 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
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 ":main",
13 "./bridge:all", 12 "./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", 21 "./bridge:bridge_unit_tests",
23 ] 22 ]
24 } 23 }
25 24
26 source_set("main") {
27 sources = [
28 "app_delegate.h",
29 "app_delegate.mm",
30 "example_view_controller.h",
31 "example_view_controller.mm",
32 "main.mm",
33 ]
34
35 deps = [
36 "//base",
37 "//remoting/base",
38 "//remoting/client",
39 "//remoting/client/ios/bridge",
40 "//remoting/protocol",
41 "//third_party/google_toolbox_for_mac",
42 "//ui/base",
43 "//ui/gfx",
44 "//ui/resources",
45 ]
46
47 configs += [ "//build/config/compiler:enable_arc" ]
48 }
49
50 source_set("ios_core") { 25 source_set("ios_core") {
51 sources = [ 26 sources = [
52 "app_runtime.cc", 27 "app_runtime.cc",
53 "app_runtime.h", 28 "app_runtime.h",
54 "client_gestures.h", 29 "client_gestures.h",
55 "client_gestures.mm", 30 "client_gestures.mm",
56 "host.h", 31 "host.h",
57 "host.mm", 32 "host.mm",
58 "host_preferences.h", 33 "host_preferences.h",
59 "host_preferences.mm", 34 "host_preferences.mm",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 79
105 deps = [ 80 deps = [
106 ":ios_core", 81 ":ios_core",
107 "//testing/gtest", 82 "//testing/gtest",
108 ] 83 ]
109 84
110 configs += [ "//build/config/compiler:enable_arc" ] 85 configs += [ "//build/config/compiler:enable_arc" ]
111 86
112 data = [] 87 data = []
113 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698