| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "wts_terminal_monitor.cc", | 108 "wts_terminal_monitor.cc", |
| 109 "wts_terminal_monitor.h", | 109 "wts_terminal_monitor.h", |
| 110 "wts_terminal_observer.h", | 110 "wts_terminal_observer.h", |
| 111 ] | 111 ] |
| 112 | 112 |
| 113 configs += [ | 113 configs += [ |
| 114 "//build/config/compiler:wexit_time_destructors", | 114 "//build/config/compiler:wexit_time_destructors", |
| 115 "//remoting/build/config:version", | 115 "//remoting/build/config:version", |
| 116 ] | 116 ] |
| 117 | 117 |
| 118 if (is_clang) { |
| 119 # TODO(thakis): Remove this once midl.exe no longer produces nonstandard |
| 120 # C++ (see the enums in com_imported_mstscax.tlh). |
| 121 cflags = [ "-Wno-microsoft-enum-forward-reference" ] |
| 122 } |
| 123 |
| 118 defines = [ "WEBRTC_CHROMIUM_BUILD" ] | 124 defines = [ "WEBRTC_CHROMIUM_BUILD" ] |
| 119 | 125 |
| 120 deps = [ | 126 deps = [ |
| 121 "//base:i18n", | 127 "//base:i18n", |
| 122 "//components/policy/core/common", | 128 "//components/policy/core/common", |
| 123 "//crypto", | 129 "//crypto", |
| 124 "//device/power_save_blocker", | 130 "//device/power_save_blocker", |
| 125 "//ipc", | 131 "//ipc", |
| 126 "//remoting/base", | 132 "//remoting/base", |
| 127 "//remoting/host/security_key", | 133 "//remoting/host/security_key", |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 | 504 |
| 499 output = "$root_gen_dir/remoting/{{source_name_part}}" | 505 output = "$root_gen_dir/remoting/{{source_name_part}}" |
| 500 | 506 |
| 501 locale_dir = webapp_locale_dir | 507 locale_dir = webapp_locale_dir |
| 502 | 508 |
| 503 encoding = "utf-16" | 509 encoding = "utf-16" |
| 504 | 510 |
| 505 locales = remoting_locales | 511 locales = remoting_locales |
| 506 } | 512 } |
| 507 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi | 513 # TODO(GYP) More Windows remoting targets from remoting_host_win.gypi |
| OLD | NEW |