| 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 "sys_opengl.h", | 27 "sys_opengl.h", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 public_deps = [ |
| 31 "//remoting/proto", |
| 32 ] |
| 30 deps = [ | 33 deps = [ |
| 31 "//remoting/proto", | |
| 32 "//third_party/libyuv", | 34 "//third_party/libyuv", |
| 33 "//third_party/webrtc/base:rtc_base_approved", | 35 "//third_party/webrtc/base:rtc_base_approved", |
| 34 ] | 36 ] |
| 35 | 37 |
| 36 public_configs = [ "//third_party/khronos:khronos_headers" ] | 38 public_configs = [ "//third_party/khronos:khronos_headers" ] |
| 37 | 39 |
| 38 if (is_android) { | 40 if (is_android) { |
| 39 libs = [ "GLESv2" ] | 41 libs = [ "GLESv2" ] |
| 40 } | 42 } |
| 41 | 43 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 84 |
| 83 deps = [ | 85 deps = [ |
| 84 ":display", | 86 ":display", |
| 85 "//remoting/proto", | 87 "//remoting/proto", |
| 86 "//testing/gmock", | 88 "//testing/gmock", |
| 87 "//testing/gtest", | 89 "//testing/gtest", |
| 88 "//third_party/webrtc/base:rtc_base_approved", | 90 "//third_party/webrtc/base:rtc_base_approved", |
| 89 ] | 91 ] |
| 90 } | 92 } |
| 91 } | 93 } |
| OLD | NEW |