| 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("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//remoting/remoting_options.gni") | 7 import("//remoting/remoting_options.gni") |
| 8 import("//remoting/remoting_locales.gni") | 8 import("//remoting/remoting_locales.gni") |
| 9 import("//remoting/remoting_version.gni") | 9 import("//remoting/remoting_version.gni") |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 deps += [ "//build/config/linux/gtk" ] | 61 deps += [ "//build/config/linux/gtk" ] |
| 62 } | 62 } |
| 63 } | 63 } |
| 64 | 64 |
| 65 if (!is_chromeos && enable_remoting_host) { | 65 if (!is_chromeos && enable_remoting_host) { |
| 66 if (is_win) { | 66 if (is_win) { |
| 67 executable("remote_assistance_host") { | 67 executable("remote_assistance_host") { |
| 68 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 68 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 69 | 69 |
| 70 deps = [ | 70 deps = [ |
| 71 "//base/allocator", | 71 "//base:base_allocator", |
| 72 "//remoting/host/win:dpi_aware_exe_manifest", | 72 "//remoting/host/win:dpi_aware_exe_manifest", |
| 73 "//remoting/host/win:remoting_core", | 73 "//remoting/host/win:remoting_core", |
| 74 "//remoting/host/win:remoting_windows_resources", | 74 "//remoting/host/win:remoting_windows_resources", |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 sources = [ | 77 sources = [ |
| 78 "$root_gen_dir/remoting/version.rc", | 78 "$root_gen_dir/remoting/version.rc", |
| 79 "it2me_native_messaging_host_entry_point.cc", | 79 "it2me_native_messaging_host_entry_point.cc", |
| 80 ] | 80 ] |
| 81 | 81 |
| 82 defines = host_predefines + | 82 defines = host_predefines + |
| 83 [ "REMOTING_HOST_BINARY=BINARY_REMOTE_ASSISTANCE_HOST" ] | 83 [ "REMOTING_HOST_BINARY=BINARY_REMOTE_ASSISTANCE_HOST" ] |
| 84 | 84 |
| 85 ldflags = [ | 85 ldflags = [ |
| 86 # "/NODEFAULTLIB", TODO(zijiehe): Why IgnoreAllDefaultLibraries: true in | 86 # "/NODEFAULTLIB", TODO(zijiehe): Why IgnoreAllDefaultLibraries: true in |
| 87 # GYP does not take effect? | 87 # GYP does not take effect? |
| 88 "comctl32.lib", | 88 "comctl32.lib", |
| 89 ] | 89 ] |
| 90 } | 90 } |
| 91 | 91 |
| 92 executable("remote_assistance_host_uiaccess") { | 92 executable("remote_assistance_host_uiaccess") { |
| 93 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 93 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 94 | 94 |
| 95 deps = [ | 95 deps = [ |
| 96 "//base/allocator", | 96 "//base:base_allocator", |
| 97 "//remoting/host/win:remoting_core", | 97 "//remoting/host/win:remoting_core", |
| 98 "//remoting/host/win:remoting_windows_resources", | 98 "//remoting/host/win:remoting_windows_resources", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 sources = [ | 101 sources = [ |
| 102 "$root_gen_dir/remoting/version.rc", | 102 "$root_gen_dir/remoting/version.rc", |
| 103 "it2me_native_messaging_host_entry_point.cc", | 103 "it2me_native_messaging_host_entry_point.cc", |
| 104 ] | 104 ] |
| 105 | 105 |
| 106 defines = host_predefines + | 106 defines = host_predefines + |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 if (enable_webrtc) { | 229 if (enable_webrtc) { |
| 230 deps += [ "//third_party/libjingle/webrtc:libjingle_webrtc" ] | 230 deps += [ "//third_party/libjingle/webrtc:libjingle_webrtc" ] |
| 231 } | 231 } |
| 232 | 232 |
| 233 if (is_desktop_linux) { | 233 if (is_desktop_linux) { |
| 234 deps += [ "//build/config/linux/gtk" ] | 234 deps += [ "//build/config/linux/gtk" ] |
| 235 } | 235 } |
| 236 } | 236 } |
| 237 } | 237 } |
| 238 } | 238 } |
| OLD | NEW |