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