OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |