| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/util/version.gni") | 7 import("//build/util/version.gni") |
| 8 import("//remoting/remoting_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//remoting/remoting_locales.gni") | 9 import("//remoting/remoting_locales.gni") |
| 10 import("//remoting/remoting_options.gni") | 10 import("//remoting/remoting_options.gni") |
| (...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 | 830 |
| 831 if (is_mac && is_chrome_branded && is_official_build) { | 831 if (is_mac && is_chrome_branded && is_official_build) { |
| 832 defines = [ "REMOTING_ENABLE_BREAKPAD" ] | 832 defines = [ "REMOTING_ENABLE_BREAKPAD" ] |
| 833 } | 833 } |
| 834 | 834 |
| 835 deps = [ | 835 deps = [ |
| 836 ":credits", | 836 ":credits", |
| 837 ":remoting_me2me_host_static", | 837 ":remoting_me2me_host_static", |
| 838 "//build/config/sanitizers:deps", | 838 "//build/config/sanitizers:deps", |
| 839 ] | 839 ] |
| 840 |
| 841 if (is_linux) { |
| 842 deps += [ ":remoting_me2me_host_runner" ] |
| 843 } |
| 844 } |
| 845 |
| 846 if (is_linux) { |
| 847 copy("remoting_me2me_host_runner") { |
| 848 sources = [ |
| 849 "linux/linux_me2me_host.py", |
| 850 ] |
| 851 outputs = [ |
| 852 "$root_build_dir/run_me2me_host", |
| 853 ] |
| 854 } |
| 840 } | 855 } |
| 841 | 856 |
| 842 executable("native_messaging_host") { | 857 executable("native_messaging_host") { |
| 843 sources = [ | 858 sources = [ |
| 844 "setup/me2me_native_messaging_host_entry_point.cc", | 859 "setup/me2me_native_messaging_host_entry_point.cc", |
| 845 "setup/me2me_native_messaging_host_main.cc", | 860 "setup/me2me_native_messaging_host_main.cc", |
| 846 "setup/me2me_native_messaging_host_main.h", | 861 "setup/me2me_native_messaging_host_main.h", |
| 847 ] | 862 ] |
| 848 | 863 |
| 849 deps = [ | 864 deps = [ |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 959 "//remoting/resources", | 974 "//remoting/resources", |
| 960 "//third_party/icu:icudata", | 975 "//third_party/icu:icudata", |
| 961 ] | 976 ] |
| 962 } | 977 } |
| 963 } else { | 978 } else { |
| 964 group("remoting_me2me_host_archive") { | 979 group("remoting_me2me_host_archive") { |
| 965 } | 980 } |
| 966 } | 981 } |
| 967 } | 982 } |
| 968 } | 983 } |
| OLD | NEW |