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

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

Issue 2868383003: [CRD iOS] Send key events to the session. (Closed)
Patch Set: Update based on feedback. Created 3 years, 7 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_session.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 static_library("client") { 5 static_library("client") {
6 # Disabled the source filters because there are _mac files that need to 6 # Disabled the source filters because there are _mac files that need to
7 # be compiled on all platforms. 7 # be compiled on all platforms.
8 set_sources_assignment_filter([]) 8 set_sources_assignment_filter([])
9 9
10 sources = [ 10 sources = [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 set_sources_assignment_filter(sources_assignment_filter) 51 set_sources_assignment_filter(sources_assignment_filter)
52 52
53 configs += [ 53 configs += [
54 "//build/config/compiler:wexit_time_destructors", 54 "//build/config/compiler:wexit_time_destructors",
55 "//remoting/build/config:version", 55 "//remoting/build/config:version",
56 "//remoting/build/config:enable_webrtc_remoting_client", 56 "//remoting/build/config:enable_webrtc_remoting_client",
57 ] 57 ]
58 58
59 deps = [ 59 deps = [
60 "//remoting/base", 60 "//remoting/base",
61 "//remoting/client/input",
61 "//remoting/codec:decoder", 62 "//remoting/codec:decoder",
62 "//remoting/protocol", 63 "//remoting/protocol",
63 "//third_party/libyuv", 64 "//third_party/libyuv",
64 "//third_party/webrtc/modules/desktop_capture:primitives", 65 "//third_party/webrtc/modules/desktop_capture:primitives",
65 "//ui/events:dom_keycode_converter", 66 "//ui/events:dom_keycode_converter",
66 ] 67 ]
67 68
68 libs = [] 69 libs = []
69 70
70 if (is_nacl) { 71 if (is_nacl) {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 ] 126 ]
126 127
127 deps = [ 128 deps = [
128 ":client", 129 ":client",
129 "//remoting/proto", 130 "//remoting/proto",
130 "//testing/gmock", 131 "//testing/gmock",
131 "//testing/gtest", 132 "//testing/gtest",
132 "//third_party/webrtc/base:rtc_base_approved", 133 "//third_party/webrtc/base:rtc_base_approved",
133 ] 134 ]
134 } 135 }
OLDNEW
« no previous file with comments | « no previous file | remoting/client/chromoting_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698