| 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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 ], | 572 ], |
| 573 "string", | 573 "string", |
| 574 [ "installer/linux/build-deb.sh" ]) | 574 [ "installer/linux/build-deb.sh" ]) |
| 575 changes_filename = | 575 changes_filename = |
| 576 "$root_build_dir/" + get_path_info(deb_filename, "name") + ".changes" | 576 "$root_build_dir/" + get_path_info(deb_filename, "name") + ".changes" |
| 577 | 577 |
| 578 packaging_outputs = [ | 578 packaging_outputs = [ |
| 579 deb_filename, | 579 deb_filename, |
| 580 changes_filename, | 580 changes_filename, |
| 581 | 581 |
| 582 # TODO(GYP): These files will only be present if we're stripping | 582 # TODO(GYP): Check that these are generated by build_deb.py. |
| 583 # binaries. We need to support linux_dump_symbols for this. | |
| 584 #"$root_build_dir/remoting_me2me_host.debug", | 583 #"$root_build_dir/remoting_me2me_host.debug", |
| 585 #"$root_build_dir/remoting_start_host.debug", | 584 #"$root_build_dir/remoting_start_host.debug", |
| 586 #"$root_build_dir/native_messaging_host.debug", | 585 #"$root_build_dir/native_messaging_host.debug", |
| 587 #"$root_build_dir/remote_assistance_host.debug", | 586 #"$root_build_dir/remote_assistance_host.debug", |
| 588 ] | 587 ] |
| 589 | 588 |
| 590 zip("remoting_me2me_host_archive") { | 589 zip("remoting_me2me_host_archive") { |
| 591 # Store the installer package(s) into a zip file so there is a | 590 # Store the installer package(s) into a zip file so there is a |
| 592 # consistent filename to reference for build archiving (i.e. in | 591 # consistent filename to reference for build archiving (i.e. in |
| 593 # FILES.cfg). This also avoids possible conflicts with "wildcard" | 592 # FILES.cfg). This also avoids possible conflicts with "wildcard" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 "//remoting/resources", | 646 "//remoting/resources", |
| 648 "//third_party/icu:icudata", | 647 "//third_party/icu:icudata", |
| 649 ] | 648 ] |
| 650 } | 649 } |
| 651 } else { | 650 } else { |
| 652 group("remoting_me2me_host_archive") { | 651 group("remoting_me2me_host_archive") { |
| 653 } | 652 } |
| 654 } | 653 } |
| 655 } | 654 } |
| 656 } | 655 } |
| OLD | NEW |