Chromium Code Reviews| 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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 836 | 836 |
| 837 if (is_mac && is_chrome_branded && is_official_build) { | 837 if (is_mac && is_chrome_branded && is_official_build) { |
| 838 defines = [ "REMOTING_ENABLE_BREAKPAD" ] | 838 defines = [ "REMOTING_ENABLE_BREAKPAD" ] |
| 839 } | 839 } |
| 840 | 840 |
| 841 deps = [ | 841 deps = [ |
| 842 ":credits", | 842 ":credits", |
| 843 ":remoting_me2me_host_static", | 843 ":remoting_me2me_host_static", |
| 844 "//build/config/sanitizers:deps", | 844 "//build/config/sanitizers:deps", |
| 845 ] | 845 ] |
| 846 | |
| 847 if (is_linux) { | |
| 848 deps += [ ":remoting_me2me_host_runner" ] | |
| 849 } | |
| 850 } | |
| 851 | |
| 852 if (is_linux) { | |
| 853 copy("remoting_me2me_host_runner") { | |
| 854 sources = [ | |
| 855 "linux/linux_me2me_host.py", | |
| 856 ] | |
| 857 outputs = [ | |
| 858 "$root_build_dir/run_me2me_host", | |
|
Sergey Ulanov
2016/04/14 23:49:06
It's confusing to use 3 different name for the sam
| |
| 859 ] | |
| 860 } | |
| 846 } | 861 } |
| 847 | 862 |
| 848 executable("native_messaging_host") { | 863 executable("native_messaging_host") { |
| 849 sources = [ | 864 sources = [ |
| 850 "setup/me2me_native_messaging_host_entry_point.cc", | 865 "setup/me2me_native_messaging_host_entry_point.cc", |
| 851 "setup/me2me_native_messaging_host_main.cc", | 866 "setup/me2me_native_messaging_host_main.cc", |
| 852 "setup/me2me_native_messaging_host_main.h", | 867 "setup/me2me_native_messaging_host_main.h", |
| 853 ] | 868 ] |
| 854 | 869 |
| 855 deps = [ | 870 deps = [ |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 965 "//remoting/resources", | 980 "//remoting/resources", |
| 966 "//third_party/icu:icudata", | 981 "//third_party/icu:icudata", |
| 967 ] | 982 ] |
| 968 } | 983 } |
| 969 } else { | 984 } else { |
| 970 group("remoting_me2me_host_archive") { | 985 group("remoting_me2me_host_archive") { |
| 971 } | 986 } |
| 972 } | 987 } |
| 973 } | 988 } |
| 974 } | 989 } |
| OLD | NEW |