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

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

Issue 2900203002: Moving input filter files and keymap to input directory. (Closed)
Patch Set: Fix include for input. Created 3 years, 6 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 assert(is_nacl, 5 assert(is_nacl,
6 "These targets must only be built using the untrusted NaCl toolchains.") 6 "These targets must only be built using the untrusted NaCl toolchains.")
7 7
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 9
10 executable("remoting_client_plugin_newlib") { 10 executable("remoting_client_plugin_newlib") {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ] 42 ]
43 43
44 configs += [ "//build/config/compiler:wexit_time_destructors" ] 44 configs += [ "//build/config/compiler:wexit_time_destructors" ]
45 45
46 deps = [ 46 deps = [
47 "//net", 47 "//net",
48 "//ppapi/cpp", 48 "//ppapi/cpp",
49 "//ppapi/native_client:ppapi_lib", 49 "//ppapi/native_client:ppapi_lib",
50 "//remoting/base", 50 "//remoting/base",
51 "//remoting/client", 51 "//remoting/client",
52 "//remoting/client/input",
52 "//remoting/protocol", 53 "//remoting/protocol",
53 "//remoting/signaling", 54 "//remoting/signaling",
54 "//third_party/libyuv", 55 "//third_party/libyuv",
55 "//third_party/webrtc/modules/desktop_capture:primitives", 56 "//third_party/webrtc/modules/desktop_capture:primitives",
56 "//ui/events:dom_keycode_converter", 57 "//ui/events:dom_keycode_converter",
57 ] 58 ]
58 59
59 include_dirs = [ "//ppapi/lib/gl/include" ] 60 include_dirs = [ "//ppapi/lib/gl/include" ]
60 } 61 }
61 62
62 if (enable_nacl && is_debug) { 63 if (enable_nacl && is_debug) {
63 copy("remoting_client_plugin_newlib_debug") { 64 copy("remoting_client_plugin_newlib_debug") {
64 public_deps = [ 65 public_deps = [
65 ":remoting_client_plugin_newlib", 66 ":remoting_client_plugin_newlib",
66 ] 67 ]
67 sources = [ 68 sources = [
68 "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe", 69 "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe",
69 ] 70 ]
70 outputs = [ 71 outputs = [
71 "$root_out_dir/remoting_client_plugin_newlib.pexe.debug", 72 "$root_out_dir/remoting_client_plugin_newlib.pexe.debug",
72 ] 73 ]
73 } 74 }
74 } 75 }
OLDNEW
« no previous file with comments | « remoting/client/normalizing_input_filter_win_unittest.cc ('k') | remoting/client/plugin/chromoting_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698