Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: remoting/host/BUILD.gn

Issue 1885483003: Copy Linux me2me script to output dir for GN builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify code, and add GYP 'copies' rule Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/host/linux/linux_me2me_host.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | remoting/host/linux/linux_me2me_host.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698