| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 "wts_session_process_delegate.h", | 374 "wts_session_process_delegate.h", |
| 375 ] | 375 ] |
| 376 | 376 |
| 377 deps = [ | 377 deps = [ |
| 378 ":messages", | 378 ":messages", |
| 379 ":remoting_lib_idl", | 379 ":remoting_lib_idl", |
| 380 ":remoting_lib_ps", | 380 ":remoting_lib_ps", |
| 381 ":remoting_windows_resources", | 381 ":remoting_windows_resources", |
| 382 ":win", | 382 ":win", |
| 383 "//base", | 383 "//base", |
| 384 "//base:base_allocator", |
| 384 "//base:base_static", | 385 "//base:base_static", |
| 385 "//base/allocator", | |
| 386 "//base/third_party/dynamic_annotations", | 386 "//base/third_party/dynamic_annotations", |
| 387 "//build/win:default_exe_manifest", | 387 "//build/win:default_exe_manifest", |
| 388 "//ipc", | 388 "//ipc", |
| 389 "//mojo/edk/system", | 389 "//mojo/edk/system", |
| 390 "//net", | 390 "//net", |
| 391 "//remoting/base", | 391 "//remoting/base", |
| 392 "//remoting/base:breakpad", | 392 "//remoting/base:breakpad", |
| 393 "//remoting/host:host", | 393 "//remoting/host:host", |
| 394 "//remoting/host:remoting_me2me_host_static", | 394 "//remoting/host:remoting_me2me_host_static", |
| 395 "//remoting/host/it2me:common", | 395 "//remoting/host/it2me:common", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 | 490 |
| 491 output = "$root_gen_dir/remoting/{{source_name_part}}" | 491 output = "$root_gen_dir/remoting/{{source_name_part}}" |
| 492 | 492 |
| 493 locale_dir = webapp_locale_dir | 493 locale_dir = webapp_locale_dir |
| 494 | 494 |
| 495 encoding = "utf-16" | 495 encoding = "utf-16" |
| 496 | 496 |
| 497 locales = remoting_locales | 497 locales = remoting_locales |
| 498 } | 498 } |
| 499 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 499 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| OLD | NEW |