| 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 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |