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 static_library("client") { | 7 static_library("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 if (is_android || is_ios) { | 44 if (is_android || is_ios || is_linux) { |
| 45 source_set("opengl_renderer") { | 45 source_set("opengl_renderer") { |
| 46 sources = | 46 sources = |
| 47 rebase_path(remoting_srcs_gypi_values.remoting_opengl_renderer_sources, | 47 rebase_path(remoting_srcs_gypi_values.remoting_opengl_renderer_sources, |
| 48 ".", | 48 ".", |
| 49 "//remoting") | 49 "//remoting") |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 "//remoting/proto", | 52 "//remoting/proto", |
| 53 "//third_party/libyuv", | 53 "//third_party/libyuv", |
| 54 "//third_party/webrtc", | 54 "//third_party/webrtc", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 104 ] | 104 ] |
| 105 | 105 |
| 106 deps = [ | 106 deps = [ |
| 107 ":client", | 107 ":client", |
| 108 ":test_support", | 108 ":test_support", |
| 109 "//remoting/proto", | 109 "//remoting/proto", |
| 110 "//testing/gmock", | 110 "//testing/gmock", |
| 111 "//testing/gtest", | 111 "//testing/gtest", |
| 112 "//third_party/webrtc", | 112 "//third_party/webrtc", |
| 113 ] | 113 ] |
| 114 | |
| 115 if (is_linux) { | |
|
Sergey Ulanov
2016/08/10 15:35:06
Can we run this test on android? If not then it sh
Yuwei
2016/08/10 21:31:00
Managed to get it compiled on all platforms. It is
| |
| 116 sources += [ "gl_renderer_unittest.cc" ] | |
| 117 deps += [ ":opengl_renderer" ] | |
| 118 libs = [ "GL" ] | |
| 119 } | |
| 114 } | 120 } |
| OLD | NEW |