OLD | NEW |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 group("all") { | 5 group("all") { |
6 testonly = true | 6 testonly = true |
7 | 7 |
8 deps = [ | 8 deps = [ |
9 ":display", | 9 ":display", |
10 ] | 10 ] |
11 } | 11 } |
12 | 12 |
13 group("all_test") { | 13 group("all_test") { |
14 testonly = true | 14 testonly = true |
15 | 15 |
16 deps = [] | 16 deps = [] |
17 } | 17 } |
18 | 18 |
19 source_set("display") { | 19 source_set("display") { |
20 sources = [ | 20 sources = [ |
21 "gl_demo_screen.h", | 21 "gl_demo_screen.h", |
22 "gl_demo_screen.mm", | 22 "gl_demo_screen.mm", |
23 "gl_display_handler.h", | 23 "gl_display_handler.h", |
24 "gl_display_handler.mm", | 24 "gl_display_handler.mm", |
25 ] | 25 ] |
26 | 26 |
27 public_deps = [ | 27 public_deps = [ |
28 "//remoting/client", | 28 "//remoting/client", |
29 "//remoting/client/display", | 29 "//third_party/protobuf:protobuf_lite", |
30 "//third_party/webrtc/base:rtc_base_approved", | 30 "//third_party/webrtc/base:rtc_base_approved", |
31 ] | 31 ] |
32 | 32 |
33 deps = [ | 33 deps = [ |
34 "//base", | 34 "//base", |
| 35 "//remoting/client/display", |
35 ] | 36 ] |
36 | 37 |
| 38 include_dirs = [ "//third_party/protobuf/src" ] |
| 39 |
37 libs = [ | 40 libs = [ |
38 "CoreGraphics.framework", | 41 "CoreGraphics.framework", |
39 "GLKit.framework", | 42 "GLKit.framework", |
40 "OpenGLES.framework", | 43 "OpenGLES.framework", |
41 ] | 44 ] |
42 | 45 |
43 configs += [ "//build/config/compiler:enable_arc" ] | 46 configs += [ "//build/config/compiler:enable_arc" ] |
44 } | 47 } |
OLD | NEW |