| 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/codec", | |
| 53 "//remoting/protocol", | 52 "//remoting/protocol", |
| 54 "//remoting/signaling", | 53 "//remoting/signaling", |
| 55 "//third_party/libyuv", | 54 "//third_party/libyuv", |
| 56 "//third_party/webrtc/modules/desktop_capture:primitives", | 55 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 57 "//ui/events:dom_keycode_converter", | 56 "//ui/events:dom_keycode_converter", |
| 58 ] | 57 ] |
| 59 | 58 |
| 60 include_dirs = [ "//ppapi/lib/gl/include" ] | 59 include_dirs = [ "//ppapi/lib/gl/include" ] |
| 61 } | 60 } |
| 62 | 61 |
| 63 if (enable_nacl && is_debug) { | 62 if (enable_nacl && is_debug) { |
| 64 copy("remoting_client_plugin_newlib_debug") { | 63 copy("remoting_client_plugin_newlib_debug") { |
| 65 public_deps = [ | 64 public_deps = [ |
| 66 ":remoting_client_plugin_newlib", | 65 ":remoting_client_plugin_newlib", |
| 67 ] | 66 ] |
| 68 sources = [ | 67 sources = [ |
| 69 "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe", | 68 "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe", |
| 70 ] | 69 ] |
| 71 outputs = [ | 70 outputs = [ |
| 72 "$root_out_dir/remoting_client_plugin_newlib.pexe.debug", | 71 "$root_out_dir/remoting_client_plugin_newlib.pexe.debug", |
| 73 ] | 72 ] |
| 74 } | 73 } |
| 75 } | 74 } |
| OLD | NEW |