| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 } | 195 } |
| 196 | 196 |
| 197 sources = [ | 197 sources = [ |
| 198 "it2me_native_messaging_host_entry_point.cc", | 198 "it2me_native_messaging_host_entry_point.cc", |
| 199 "it2me_native_messaging_host_main.cc", | 199 "it2me_native_messaging_host_main.cc", |
| 200 "it2me_native_messaging_host_main.h", | 200 "it2me_native_messaging_host_main.h", |
| 201 ] | 201 ] |
| 202 | 202 |
| 203 deps = [ | 203 deps = [ |
| 204 ":common", | 204 ":common", |
| 205 "//build/config/sanitizers:deps", | 205 "//build/config:exe_and_shlib_deps", |
| 206 "//remoting/host", | 206 "//remoting/host", |
| 207 "//remoting/host/native_messaging", | 207 "//remoting/host/native_messaging", |
| 208 "//remoting/proto", | 208 "//remoting/proto", |
| 209 "//ui/gfx", | 209 "//ui/gfx", |
| 210 ] | 210 ] |
| 211 if (is_mac) { | 211 if (is_mac) { |
| 212 foreach(locale, remoting_locales_with_underscores) { | 212 foreach(locale, remoting_locales_with_underscores) { |
| 213 deps += [ | 213 deps += [ |
| 214 ":remote_assistance_host_strings_${locale}_bundle_data", | 214 ":remote_assistance_host_strings_${locale}_bundle_data", |
| 215 "//remoting/host/mac:remoting_host_locale_${locale}_bundle_data", | 215 "//remoting/host/mac:remoting_host_locale_${locale}_bundle_data", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 229 if (enable_webrtc) { | 229 if (enable_webrtc) { |
| 230 deps += [ "//third_party/webrtc_overrides:init_webrtc" ] | 230 deps += [ "//third_party/webrtc_overrides:init_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 |