| 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") { |
| 11 sources = [ | 11 sources = [ |
| 12 "chromoting_instance.cc", | 12 "chromoting_instance.cc", |
| 13 "chromoting_instance.h", | 13 "chromoting_instance.h", |
| 14 "delegating_signal_strategy.cc", | |
| 15 "delegating_signal_strategy.h", | |
| 16 "pepper_address_resolver.cc", | 14 "pepper_address_resolver.cc", |
| 17 "pepper_address_resolver.h", | 15 "pepper_address_resolver.h", |
| 18 "pepper_audio_player.cc", | 16 "pepper_audio_player.cc", |
| 19 "pepper_audio_player.h", | 17 "pepper_audio_player.h", |
| 20 "pepper_cursor_setter.cc", | 18 "pepper_cursor_setter.cc", |
| 21 "pepper_cursor_setter.h", | 19 "pepper_cursor_setter.h", |
| 22 "pepper_input_handler.cc", | 20 "pepper_input_handler.cc", |
| 23 "pepper_input_handler.h", | 21 "pepper_input_handler.h", |
| 24 "pepper_main_thread_task_runner.cc", | 22 "pepper_main_thread_task_runner.cc", |
| 25 "pepper_main_thread_task_runner.h", | 23 "pepper_main_thread_task_runner.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 46 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 44 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 47 | 45 |
| 48 deps = [ | 46 deps = [ |
| 49 "//net", | 47 "//net", |
| 50 "//ppapi/cpp", | 48 "//ppapi/cpp", |
| 51 "//ppapi/native_client:ppapi_lib", | 49 "//ppapi/native_client:ppapi_lib", |
| 52 "//remoting/base", | 50 "//remoting/base", |
| 53 "//remoting/client", | 51 "//remoting/client", |
| 54 "//remoting/codec", | 52 "//remoting/codec", |
| 55 "//remoting/protocol", | 53 "//remoting/protocol", |
| 54 "//remoting/signaling", |
| 56 "//third_party/libyuv", | 55 "//third_party/libyuv", |
| 57 "//third_party/webrtc/modules/desktop_capture:primitives", | 56 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 58 "//ui/events:dom_keycode_converter", | 57 "//ui/events:dom_keycode_converter", |
| 59 ] | 58 ] |
| 60 | 59 |
| 61 include_dirs = [ "//ppapi/lib/gl/include" ] | 60 include_dirs = [ "//ppapi/lib/gl/include" ] |
| 62 } | 61 } |
| 63 | 62 |
| 64 if (enable_nacl && is_debug) { | 63 if (enable_nacl && is_debug) { |
| 65 copy("remoting_client_plugin_newlib_debug") { | 64 copy("remoting_client_plugin_newlib_debug") { |
| 66 public_deps = [ | 65 public_deps = [ |
| 67 ":remoting_client_plugin_newlib", | 66 ":remoting_client_plugin_newlib", |
| 68 ] | 67 ] |
| 69 sources = [ | 68 sources = [ |
| 70 "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe", | 69 "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe", |
| 71 ] | 70 ] |
| 72 outputs = [ | 71 outputs = [ |
| 73 "$root_out_dir/remoting_client_plugin_newlib.pexe.debug", | 72 "$root_out_dir/remoting_client_plugin_newlib.pexe.debug", |
| 74 ] | 73 ] |
| 75 } | 74 } |
| 76 } | 75 } |
| OLD | NEW |