OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 source_set("display") { | 5 source_set("display") { |
6 sources = [ | 6 sources = [ |
7 "canvas.h", | 7 "canvas.h", |
8 "drawable.h", | 8 "drawable.h", |
9 "gl_canvas.cc", | 9 "gl_canvas.cc", |
10 "gl_canvas.h", | 10 "gl_canvas.h", |
11 "gl_cursor.cc", | 11 "gl_cursor.cc", |
12 "gl_cursor.h", | 12 "gl_cursor.h", |
13 "gl_cursor_feedback.cc", | 13 "gl_cursor_feedback.cc", |
14 "gl_cursor_feedback.h", | 14 "gl_cursor_feedback.h", |
15 "gl_cursor_feedback_texture.cc", | 15 "gl_cursor_feedback_texture.cc", |
16 "gl_cursor_feedback_texture.h", | 16 "gl_cursor_feedback_texture.h", |
17 "gl_desktop.cc", | 17 "gl_desktop.cc", |
18 "gl_desktop.h", | 18 "gl_desktop.h", |
19 "gl_helpers.cc", | 19 "gl_helpers.cc", |
20 "gl_helpers.h", | 20 "gl_helpers.h", |
21 "gl_math.cc", | 21 "gl_math.cc", |
22 "gl_math.h", | 22 "gl_math.h", |
23 "gl_render_layer.cc", | 23 "gl_render_layer.cc", |
24 "gl_render_layer.h", | 24 "gl_render_layer.h", |
25 "gl_renderer.cc", | 25 "gl_renderer.cc", |
26 "gl_renderer.h", | 26 "gl_renderer.h", |
| 27 "renderer_proxy.cc", |
| 28 "renderer_proxy.h", |
27 "sys_opengl.h", | 29 "sys_opengl.h", |
28 ] | 30 ] |
29 | 31 |
30 public_deps = [ | 32 public_deps = [ |
31 "//remoting/proto", | 33 "//remoting/proto", |
32 ] | 34 ] |
33 deps = [ | 35 deps = [ |
34 "//third_party/libyuv", | 36 "//third_party/libyuv", |
| 37 "//third_party/protobuf:protobuf_lite", |
35 "//third_party/webrtc/base:rtc_base_approved", | 38 "//third_party/webrtc/base:rtc_base_approved", |
36 ] | 39 ] |
37 | 40 |
38 public_configs = [ "//third_party/khronos:khronos_headers" ] | 41 public_configs = [ "//third_party/khronos:khronos_headers" ] |
39 | 42 |
40 if (is_android) { | 43 if (is_android) { |
41 libs = [ "GLESv2" ] | 44 libs = [ "GLESv2" ] |
42 } | 45 } |
43 | 46 |
44 if (is_linux) { | 47 if (is_linux) { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 87 |
85 deps = [ | 88 deps = [ |
86 ":display", | 89 ":display", |
87 "//remoting/proto", | 90 "//remoting/proto", |
88 "//testing/gmock", | 91 "//testing/gmock", |
89 "//testing/gtest", | 92 "//testing/gtest", |
90 "//third_party/webrtc/base:rtc_base_approved", | 93 "//third_party/webrtc/base:rtc_base_approved", |
91 ] | 94 ] |
92 } | 95 } |
93 } | 96 } |
OLD | NEW |