| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/toolchain/win/midl.gni") | 5 import("//build/toolchain/win/midl.gni") |
| 6 import("//build/win/message_compiler.gni") | 6 import("//build/win/message_compiler.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//remoting/build/config/remoting_build.gni") | 8 import("//remoting/build/config/remoting_build.gni") |
| 9 import("//remoting/host/installer/win/generate_clsids.gni") | 9 import("//remoting/host/installer/win/generate_clsids.gni") |
| 10 | 10 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 sources = [ | 145 sources = [ |
| 146 "elevated_native_messaging_host.cc", | 146 "elevated_native_messaging_host.cc", |
| 147 "elevated_native_messaging_host.h", | 147 "elevated_native_messaging_host.h", |
| 148 "launch_native_messaging_host_process.cc", | 148 "launch_native_messaging_host_process.cc", |
| 149 "launch_native_messaging_host_process.h", | 149 "launch_native_messaging_host_process.h", |
| 150 "rdp_client_unittest.cc", | 150 "rdp_client_unittest.cc", |
| 151 "worker_process_launcher_unittest.cc", | 151 "worker_process_launcher_unittest.cc", |
| 152 ] | 152 ] |
| 153 | 153 |
| 154 deps = [ | 154 deps = [ |
| 155 "//ipc", |
| 155 "//remoting/host", | 156 "//remoting/host", |
| 156 "//remoting/host:test_support", | 157 "//remoting/host:test_support", |
| 157 "//remoting/host/it2me:common", | 158 "//remoting/host/it2me:common", |
| 158 "//remoting/host/native_messaging", | 159 "//remoting/host/native_messaging", |
| 159 "//remoting/host/security_key:unit_tests", | 160 "//remoting/host/security_key:unit_tests", |
| 160 "//remoting/host/setup", | 161 "//remoting/host/setup", |
| 161 "//remoting/proto", | 162 "//remoting/proto", |
| 162 "//remoting/resources", | 163 "//remoting/resources", |
| 163 "//skia", | 164 "//skia", |
| 164 "//testing/gmock", | 165 "//testing/gmock", |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 | 489 |
| 489 output = "$root_gen_dir/remoting/{{source_name_part}}" | 490 output = "$root_gen_dir/remoting/{{source_name_part}}" |
| 490 | 491 |
| 491 locale_dir = webapp_locale_dir | 492 locale_dir = webapp_locale_dir |
| 492 | 493 |
| 493 encoding = "utf-16" | 494 encoding = "utf-16" |
| 494 | 495 |
| 495 locales = remoting_locales | 496 locales = remoting_locales |
| 496 } | 497 } |
| 497 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 498 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| OLD | NEW |