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

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

Issue 1864683002: Don't run build_deb.py on Windows GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | no next file » | 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 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 defines = [ "VERSION=" + "$chrome_version_major" + "." + 861 defines = [ "VERSION=" + "$chrome_version_major" + "." +
862 "$remoting_version_patch" + "." + "$chrome_version_build" + 862 "$remoting_version_patch" + "." + "$chrome_version_build" +
863 "." + "$chrome_version_patch" ] 863 "." + "$chrome_version_patch" ]
864 864
865 if (is_mac) { 865 if (is_mac) {
866 assert(false, "not implemented on mac yet") 866 assert(false, "not implemented on mac yet")
867 } 867 }
868 } 868 }
869 } 869 }
870 870
871 if (is_chrome_branded && enable_me2me_host && !is_chromeos) { 871 if (is_chrome_branded && enable_me2me_host && is_linux && !is_chromeos) {
872 # TODO(GYP): add support for archive_chromoting_tests variable? 872 # TODO(GYP): add support for archive_chromoting_tests variable?
873 873
874 import("//build/config/zip.gni") 874 import("//build/config/zip.gni")
875 875
876 build_deb_script = "installer/linux/build_deb.py" 876 build_deb_script = "installer/linux/build_deb.py"
877 deb_filename = 877 deb_filename =
878 "$root_build_dir/" + exec_script(build_deb_script, 878 "$root_build_dir/" + exec_script(build_deb_script,
879 [ 879 [
880 "-p", 880 "-p",
881 "-s", 881 "-s",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 "//remoting/resources", 957 "//remoting/resources",
958 "//third_party/icu:icudata", 958 "//third_party/icu:icudata",
959 ] 959 ]
960 } 960 }
961 } else { 961 } else {
962 group("remoting_me2me_host_archive") { 962 group("remoting_me2me_host_archive") {
963 } 963 }
964 } 964 }
965 } 965 }
966 } 966 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698