Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: remoting/client/BUILD.gn

Issue 1821623003: Revert of Adding container class for chromoting client runtimes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/client/chromoting_client_runtime.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 14 matching lines...) Expand all
25 "//remoting/protocol", 25 "//remoting/protocol",
26 "//third_party/libyuv", 26 "//third_party/libyuv",
27 "//third_party/webrtc/modules/desktop_capture:primitives", 27 "//third_party/webrtc/modules/desktop_capture:primitives",
28 ] 28 ]
29 29
30 if (is_nacl) { 30 if (is_nacl) {
31 sources -= [ 31 sources -= [
32 "client_status_logger.cc", 32 "client_status_logger.cc",
33 "server_log_entry_client.cc", 33 "server_log_entry_client.cc",
34 ] 34 ]
35 } else {
36 sources += rebase_path(
37 remoting_srcs_gypi_values.remoting_client_standalone_sources,
38 ".",
39 "//remoting")
40 } 35 }
41 } 36 }
42 37
43 source_set("unit_tests") { 38 source_set("unit_tests") {
44 testonly = true 39 testonly = true
45 40
46 # Disabled the source filters because there are _mac files that need to 41 # Disabled the source filters because there are _mac files that need to
47 # be compiled on all platforms. 42 # be compiled on all platforms.
48 set_sources_assignment_filter([]) 43 set_sources_assignment_filter([])
49 sources = [ 44 sources = [
(...skipping 15 matching lines...) Expand all
65 ] 60 ]
66 61
67 deps = [ 62 deps = [
68 ":client", 63 ":client",
69 "//remoting/proto", 64 "//remoting/proto",
70 "//testing/gmock", 65 "//testing/gmock",
71 "//testing/gtest", 66 "//testing/gtest",
72 "//third_party/webrtc", 67 "//third_party/webrtc",
73 ] 68 ]
74 } 69 }
OLDNEW
« no previous file with comments | « no previous file | remoting/client/chromoting_client_runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698