| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/util/process_version.gni") | 8 import("//build/util/process_version.gni") |
| 9 import("//build/util/version.gni") | 9 import("//build/util/version.gni") |
| 10 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | 10 import("//chrome/process_version_rc_template.gni") # For branding_file_path. |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 ] | 95 ] |
| 96 } | 96 } |
| 97 | 97 |
| 98 copy("deb_packaging_files") { | 98 copy("deb_packaging_files") { |
| 99 visibility = [ ":*" ] | 99 visibility = [ ":*" ] |
| 100 sources = [ | 100 sources = [ |
| 101 "debian/build.sh", | 101 "debian/build.sh", |
| 102 "debian/changelog.template", | 102 "debian/changelog.template", |
| 103 "debian/control.template", | 103 "debian/control.template", |
| 104 "debian/debian.menu", | 104 "debian/debian.menu", |
| 105 "debian/expected_deps_ia32", | 105 "debian/expected_deps_ia32_precise", |
| 106 "debian/expected_deps_x64", | 106 "debian/expected_deps_ia32_trusty", |
| 107 "debian/expected_deps_x64_precise", |
| 108 "debian/expected_deps_x64_trusty", |
| 107 "debian/postinst", | 109 "debian/postinst", |
| 108 "debian/postrm", | 110 "debian/postrm", |
| 109 "debian/prerm", | 111 "debian/prerm", |
| 110 ] | 112 ] |
| 111 outputs = [ | 113 outputs = [ |
| 112 "$root_out_dir/installer/debian/{{source_file_part}}", | 114 "$root_out_dir/installer/debian/{{source_file_part}}", |
| 113 ] | 115 ] |
| 114 } | 116 } |
| 115 | 117 |
| 116 copy("theme_files") { | 118 copy("theme_files") { |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 # Other packages that we support that aren't included in the default "linux" | 348 # Other packages that we support that aren't included in the default "linux" |
| 347 # target. | 349 # target. |
| 348 linux_package("trunk") { | 350 linux_package("trunk") { |
| 349 channel = "trunk" | 351 channel = "trunk" |
| 350 } | 352 } |
| 351 if (is_asan) { | 353 if (is_asan) { |
| 352 linux_package("asan") { | 354 linux_package("asan") { |
| 353 channel = "asan" | 355 channel = "asan" |
| 354 } | 356 } |
| 355 } | 357 } |
| OLD | NEW |