| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//remoting/remoting_enable.gni") | 6 import("//remoting/remoting_enable.gni") |
| 7 import("//remoting/remoting_locales.gni") | 7 import("//remoting/remoting_locales.gni") |
| 8 import("//remoting/remoting_version.gni") | 8 import("//remoting/remoting_version.gni") |
| 9 | 9 |
| 10 if (is_win) { | 10 if (is_win) { |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 118 |
| 119 ldflags = [ | 119 ldflags = [ |
| 120 # "/NODEFAULTLIB", TODO(zijiehe): Why IgnoreAllDefaultLibraries: true in | 120 # "/NODEFAULTLIB", TODO(zijiehe): Why IgnoreAllDefaultLibraries: true in |
| 121 # GYP does not take effect? | 121 # GYP does not take effect? |
| 122 "comctl32.lib", | 122 "comctl32.lib", |
| 123 ] | 123 ] |
| 124 | 124 |
| 125 # uiAccess requires a signed build to work correctly, so only enable the | 125 # uiAccess requires a signed build to work correctly, so only enable the |
| 126 # manifest flag when the binary will be properly signed. | 126 # manifest flag when the binary will be properly signed. |
| 127 if (is_official_build) { | 127 if (is_official_build) { |
| 128 deps += [ "//remoting/host:dpi_aware_uiaccess_exe_manifest" ] | 128 deps += [ "//remoting/host/win:dpi_aware_uiaccess_exe_manifest" ] |
| 129 } else { | 129 } else { |
| 130 deps += [ "//remoting/host/win:dpi_aware_exe_manifest" ] | 130 deps += [ "//remoting/host/win:dpi_aware_exe_manifest" ] |
| 131 } | 131 } |
| 132 } | 132 } |
| 133 } else { | 133 } else { |
| 134 if (is_mac) { | 134 if (is_mac) { |
| 135 app_target_type = "mac_app_bundle" | 135 app_target_type = "mac_app_bundle" |
| 136 | 136 |
| 137 # remote_assistance_host-InfoPlist.strings | 137 # remote_assistance_host-InfoPlist.strings |
| 138 foreach(locale, remoting_locales_with_underscores) { | 138 foreach(locale, remoting_locales_with_underscores) { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 if (enable_webrtc) { | 228 if (enable_webrtc) { |
| 229 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 229 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 230 } | 230 } |
| 231 | 231 |
| 232 if (is_desktop_linux) { | 232 if (is_desktop_linux) { |
| 233 deps += [ "//build/config/linux/gtk2" ] | 233 deps += [ "//build/config/linux/gtk2" ] |
| 234 } | 234 } |
| 235 } | 235 } |
| 236 } | 236 } |
| 237 } | 237 } |
| OLD | NEW |