| 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_srcs.gni") | |
| 8 import("//remoting/remoting_locales.gni") | 7 import("//remoting/remoting_locales.gni") |
| 9 import("//remoting/remoting_version.gni") | 8 import("//remoting/remoting_version.gni") |
| 10 | 9 |
| 11 if (is_win) { | 10 if (is_win) { |
| 12 import("//remoting/host/predefines_win.gni") | 11 import("//remoting/host/predefines_win.gni") |
| 13 } | 12 } |
| 14 if (is_mac) { | 13 if (is_mac) { |
| 15 import("//build/config/mac/rules.gni") | 14 import("//build/config/mac/rules.gni") |
| 16 import("//third_party/icu/config.gni") | 15 import("//third_party/icu/config.gni") |
| 17 } | 16 } |
| 18 | 17 |
| 19 source_set("common") { | 18 source_set("common") { |
| 20 sources = rebase_path( | 19 sources = [ |
| 21 remoting_host_srcs_gypi_values.remoting_it2me_host_static_sources, | 20 "it2me_confirmation_dialog.cc", |
| 22 ".", | 21 "it2me_confirmation_dialog.h", |
| 23 "//remoting") | 22 "it2me_confirmation_dialog_chromeos.cc", |
| 23 "it2me_confirmation_dialog_proxy.cc", |
| 24 "it2me_confirmation_dialog_proxy.h", |
| 25 "it2me_host.cc", |
| 26 "it2me_host.h", |
| 27 "it2me_native_messaging_host.cc", |
| 28 "it2me_native_messaging_host.h", |
| 29 ] |
| 24 | 30 |
| 25 if (is_android) { | 31 if (is_android) { |
| 26 sources -= [ | 32 sources -= [ |
| 27 "it2me_native_messaging_host.cc", | 33 "it2me_native_messaging_host.cc", |
| 28 "it2me_native_messaging_host.h", | 34 "it2me_native_messaging_host.h", |
| 29 ] | 35 ] |
| 30 } | 36 } |
| 31 | 37 |
| 32 configs += [ | 38 configs += [ |
| 33 "//build/config/compiler:wexit_time_destructors", | 39 "//build/config/compiler:wexit_time_destructors", |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 if (enable_webrtc) { | 180 if (enable_webrtc) { |
| 175 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 181 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 176 } | 182 } |
| 177 | 183 |
| 178 if (is_desktop_linux) { | 184 if (is_desktop_linux) { |
| 179 deps += [ "//build/config/linux/gtk2" ] | 185 deps += [ "//build/config/linux/gtk2" ] |
| 180 } | 186 } |
| 181 } | 187 } |
| 182 } | 188 } |
| 183 } | 189 } |
| OLD | NEW |