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): These files will only be present if we're stripping | 589 # TODO(GYP): Check that these are generated by build_deb.py. |
590 # binaries. We need to support linux_dump_symbols for this. | |
591 #"$root_build_dir/remoting_me2me_host.debug", | 590 #"$root_build_dir/remoting_me2me_host.debug", |
592 #"$root_build_dir/remoting_start_host.debug", | 591 #"$root_build_dir/remoting_start_host.debug", |
593 #"$root_build_dir/native_messaging_host.debug", | 592 #"$root_build_dir/native_messaging_host.debug", |
594 #"$root_build_dir/remote_assistance_host.debug", | 593 #"$root_build_dir/remote_assistance_host.debug", |
595 ] | 594 ] |
596 | 595 |
597 zip("remoting_me2me_host_archive") { | 596 zip("remoting_me2me_host_archive") { |
598 # Store the installer package(s) into a zip file so there is a | 597 # Store the installer package(s) into a zip file so there is a |
599 # consistent filename to reference for build archiving (i.e. in | 598 # consistent filename to reference for build archiving (i.e. in |
600 # FILES.cfg). This also avoids possible conflicts with "wildcard" | 599 # FILES.cfg). This also avoids possible conflicts with "wildcard" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 "//remoting/resources", | 653 "//remoting/resources", |
655 "//third_party/icu:icudata", | 654 "//third_party/icu:icudata", |
656 ] | 655 ] |
657 } | 656 } |
658 } else { | 657 } else { |
659 group("remoting_me2me_host_archive") { | 658 group("remoting_me2me_host_archive") { |
660 } | 659 } |
661 } | 660 } |
662 } | 661 } |
663 } | 662 } |
OLD | NEW |