| 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") |
| 6 import("//build/win/message_compiler.gni") |
| 7 import("//media/media_options.gni") |
| 5 import("//remoting/build/config/remoting_build.gni") | 8 import("//remoting/build/config/remoting_build.gni") |
| 6 import("//remoting/host/installer/win/generate_clsids.gni") | 9 import("//remoting/host/installer/win/generate_clsids.gni") |
| 7 import("//build/toolchain/win/midl.gni") | |
| 8 import("//build/win/message_compiler.gni") | |
| 9 | 10 |
| 10 group("all") { | 11 group("all") { |
| 11 testonly = true | 12 testonly = true |
| 12 | 13 |
| 13 deps = [ | 14 deps = [ |
| 14 ":remoting_console", | 15 ":remoting_console", |
| 15 ":remoting_desktop", | 16 ":remoting_desktop", |
| 16 ":remoting_me2me_host", | 17 ":remoting_me2me_host", |
| 17 ":remoting_native_messaging_host", | 18 ":remoting_native_messaging_host", |
| 18 "//remoting/host/security_key:remote_security_key", | 19 "//remoting/host/security_key:remote_security_key", |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 | 481 |
| 481 output = "$root_gen_dir/remoting/{{source_name_part}}" | 482 output = "$root_gen_dir/remoting/{{source_name_part}}" |
| 482 | 483 |
| 483 locale_dir = webapp_locale_dir | 484 locale_dir = webapp_locale_dir |
| 484 | 485 |
| 485 encoding = "utf-16" | 486 encoding = "utf-16" |
| 486 | 487 |
| 487 locales = remoting_locales | 488 locales = remoting_locales |
| 488 } | 489 } |
| 489 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 490 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| OLD | NEW |