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

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

Issue 1764503002: Adding container class for chromoting client runtimes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moving usage comment to .h file. Now more simple. 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 13 matching lines...) Expand all
24 "//remoting/protocol", 24 "//remoting/protocol",
25 "//third_party/libyuv", 25 "//third_party/libyuv",
26 "//third_party/webrtc/modules/desktop_capture:primitives", 26 "//third_party/webrtc/modules/desktop_capture:primitives",
27 ] 27 ]
28 28
29 if (is_nacl) { 29 if (is_nacl) {
30 sources -= [ 30 sources -= [
31 "client_status_logger.cc", 31 "client_status_logger.cc",
32 "server_log_entry_client.cc", 32 "server_log_entry_client.cc",
33 ] 33 ]
34 } else {
35 sources += rebase_path(
36 remoting_srcs_gypi_values.remoting_client_standalone_sources,
37 ".",
38 "//remoting")
34 } 39 }
35 } 40 }
36 41
37 source_set("unit_tests") { 42 source_set("unit_tests") {
38 testonly = true 43 testonly = true
39 44
40 # Disabled the source filters because there are _mac files that need to 45 # Disabled the source filters because there are _mac files that need to
41 # be compiled on all platforms. 46 # be compiled on all platforms.
42 set_sources_assignment_filter([]) 47 set_sources_assignment_filter([])
43 sources = [ 48 sources = [
(...skipping 12 matching lines...) Expand all
56 configs += [ "//remoting:version" ] 61 configs += [ "//remoting:version" ]
57 62
58 deps = [ 63 deps = [
59 ":client", 64 ":client",
60 "//remoting/proto", 65 "//remoting/proto",
61 "//testing/gmock", 66 "//testing/gmock",
62 "//testing/gtest", 67 "//testing/gtest",
63 "//third_party/webrtc", 68 "//third_party/webrtc",
64 ] 69 ]
65 } 70 }
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