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) { |
11 import("//remoting/host/predefines_win.gni") | 11 import("//remoting/host/predefines_win.gni") |
12 } | 12 } |
13 if (is_mac) { | 13 if (is_mac) { |
14 import("//build/config/mac/rules.gni") | 14 import("//build/config/mac/rules.gni") |
15 import("//third_party/icu/config.gni") | 15 import("//third_party/icu/config.gni") |
16 } | 16 } |
17 | 17 |
18 source_set("common") { | 18 source_set("common") { |
19 sources = [ | 19 sources = [ |
20 "it2me_confirmation_dialog.cc", | |
21 "it2me_confirmation_dialog.h", | 20 "it2me_confirmation_dialog.h", |
22 "it2me_confirmation_dialog_linux.cc", | 21 "it2me_confirmation_dialog_linux.cc", |
23 "it2me_confirmation_dialog_mac.mm", | 22 "it2me_confirmation_dialog_mac.mm", |
24 "it2me_confirmation_dialog_proxy.cc", | 23 "it2me_confirmation_dialog_proxy.cc", |
25 "it2me_confirmation_dialog_proxy.h", | 24 "it2me_confirmation_dialog_proxy.h", |
26 "it2me_confirmation_dialog_win.cc", | 25 "it2me_confirmation_dialog_win.cc", |
27 "it2me_host.cc", | 26 "it2me_host.cc", |
28 "it2me_host.h", | 27 "it2me_host.h", |
29 "it2me_native_messaging_host.cc", | 28 "it2me_native_messaging_host.cc", |
30 "it2me_native_messaging_host.h", | 29 "it2me_native_messaging_host.h", |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 if (is_desktop_linux) { | 238 if (is_desktop_linux) { |
240 if (use_gtk3) { | 239 if (use_gtk3) { |
241 deps += [ "//build/config/linux/gtk3" ] | 240 deps += [ "//build/config/linux/gtk3" ] |
242 } else { | 241 } else { |
243 deps += [ "//build/config/linux/gtk2" ] | 242 deps += [ "//build/config/linux/gtk2" ] |
244 } | 243 } |
245 } | 244 } |
246 } | 245 } |
247 } | 246 } |
248 } | 247 } |
OLD | NEW |