| 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/allocator.gni") | 5 import("//build/config/allocator.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//remoting/remoting_host.gni") | 9 import("//remoting/remoting_host.gni") |
| 10 import("//remoting/remoting_locales.gni") | 10 import("//remoting/remoting_locales.gni") |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 ], | 579 ], |
| 580 "string", | 580 "string", |
| 581 [ "installer/linux/build-deb.sh" ]) | 581 [ "installer/linux/build-deb.sh" ]) |
| 582 changes_filename = | 582 changes_filename = |
| 583 "$root_build_dir/" + get_path_info(deb_filename, "name") + ".changes" | 583 "$root_build_dir/" + get_path_info(deb_filename, "name") + ".changes" |
| 584 | 584 |
| 585 packaging_outputs = [ | 585 packaging_outputs = [ |
| 586 deb_filename, | 586 deb_filename, |
| 587 changes_filename, | 587 changes_filename, |
| 588 | 588 |
| 589 # TODO(GYP): Check that these are generated by build_deb.py. | 589 # TODO(GYP): These files will only be present if we're stripping |
| 590 # binaries. We need to support linux_dump_symbols for this. |
| 590 #"$root_build_dir/remoting_me2me_host.debug", | 591 #"$root_build_dir/remoting_me2me_host.debug", |
| 591 #"$root_build_dir/remoting_start_host.debug", | 592 #"$root_build_dir/remoting_start_host.debug", |
| 592 #"$root_build_dir/native_messaging_host.debug", | 593 #"$root_build_dir/native_messaging_host.debug", |
| 593 #"$root_build_dir/remote_assistance_host.debug", | 594 #"$root_build_dir/remote_assistance_host.debug", |
| 594 ] | 595 ] |
| 595 | 596 |
| 596 zip("remoting_me2me_host_archive") { | 597 zip("remoting_me2me_host_archive") { |
| 597 # Store the installer package(s) into a zip file so there is a | 598 # Store the installer package(s) into a zip file so there is a |
| 598 # consistent filename to reference for build archiving (i.e. in | 599 # consistent filename to reference for build archiving (i.e. in |
| 599 # FILES.cfg). This also avoids possible conflicts with "wildcard" | 600 # FILES.cfg). This also avoids possible conflicts with "wildcard" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 "//remoting/resources", | 654 "//remoting/resources", |
| 654 "//third_party/icu:icudata", | 655 "//third_party/icu:icudata", |
| 655 ] | 656 ] |
| 656 } | 657 } |
| 657 } else { | 658 } else { |
| 658 group("remoting_me2me_host_archive") { | 659 group("remoting_me2me_host_archive") { |
| 659 } | 660 } |
| 660 } | 661 } |
| 661 } | 662 } |
| 662 } | 663 } |
| OLD | NEW |