Chromium Code Reviews| 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 import("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
| 6 | 6 |
| 7 source_set("client") { | 7 source_set("client") { |
| 8 # Disabled the source filters because there are _mac files that need to | 8 # Disabled the source filters because there are _mac files that need to |
| 9 # be compiled on all platforms. | 9 # be compiled on all platforms. |
| 10 set_sources_assignment_filter([]) | 10 set_sources_assignment_filter([]) |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 34 "server_log_entry_client.cc", | 34 "server_log_entry_client.cc", |
| 35 ] | 35 ] |
| 36 } else { | 36 } else { |
| 37 sources += rebase_path( | 37 sources += rebase_path( |
| 38 remoting_srcs_gypi_values.remoting_client_standalone_sources, | 38 remoting_srcs_gypi_values.remoting_client_standalone_sources, |
| 39 ".", | 39 ".", |
| 40 "//remoting") | 40 "//remoting") |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 source_set("opengl_renderer") { | |
|
Yuwei
2016/07/09 01:21:24
BTW is there a way to stop non-android trybots fro
| |
| 45 sources = [ | |
| 46 "//remoting/client/gl_canvas.cc", | |
|
Sergey Ulanov
2016/07/09 01:01:20
Don't need full paths here.
Yuwei
2016/07/11 22:38:23
Done.
| |
| 47 "//remoting/client/gl_canvas.h", | |
| 48 "//remoting/client/gl_desktop.cc", | |
| 49 "//remoting/client/gl_desktop.h", | |
| 50 "//remoting/client/gl_helpers.cc", | |
| 51 "//remoting/client/gl_helpers.h", | |
| 52 "//remoting/client/gl_render_layer.cc", | |
| 53 "//remoting/client/gl_render_layer.h", | |
| 54 ] | |
| 55 | |
| 56 deps = [ | |
| 57 "//third_party/webrtc", | |
| 58 ] | |
| 59 | |
| 60 configs += [ "//third_party/khronos:khronos_headers" ] | |
| 61 } | |
| 62 | |
| 44 source_set("test_support") { | 63 source_set("test_support") { |
| 45 testonly = true | 64 testonly = true |
| 46 | 65 |
| 47 sources = [ | 66 sources = [ |
| 48 "fake_audio_consumer.cc", | 67 "fake_audio_consumer.cc", |
| 49 "fake_audio_consumer.h", | 68 "fake_audio_consumer.h", |
| 50 ] | 69 ] |
| 51 | 70 |
| 52 public_deps = [ | 71 public_deps = [ |
| 53 "//remoting/protocol:test_support", | 72 "//remoting/protocol:test_support", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 86 | 105 |
| 87 deps = [ | 106 deps = [ |
| 88 ":client", | 107 ":client", |
| 89 ":test_support", | 108 ":test_support", |
| 90 "//remoting/proto", | 109 "//remoting/proto", |
| 91 "//testing/gmock", | 110 "//testing/gmock", |
| 92 "//testing/gtest", | 111 "//testing/gtest", |
| 93 "//third_party/webrtc", | 112 "//third_party/webrtc", |
| 94 ] | 113 ] |
| 95 } | 114 } |
| OLD | NEW |