| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ] | 100 ] |
| 101 } | 101 } |
| 102 | 102 |
| 103 copy("deb_packaging_files") { | 103 copy("deb_packaging_files") { |
| 104 visibility = [ ":*" ] | 104 visibility = [ ":*" ] |
| 105 sources = [ | 105 sources = [ |
| 106 "debian/build.sh", | 106 "debian/build.sh", |
| 107 "debian/changelog.template", | 107 "debian/changelog.template", |
| 108 "debian/control.template", | 108 "debian/control.template", |
| 109 "debian/debian.menu", | 109 "debian/debian.menu", |
| 110 "debian/expected_deps_ia32", | 110 "debian/expected_deps_ia32_precise", |
| 111 "debian/expected_deps_x64", | 111 "debian/expected_deps_ia32_trusty", |
| 112 "debian/expected_deps_x64_precise", |
| 113 "debian/expected_deps_x64_trusty", |
| 112 "debian/postinst", | 114 "debian/postinst", |
| 113 "debian/postrm", | 115 "debian/postrm", |
| 114 "debian/prerm", | 116 "debian/prerm", |
| 115 ] | 117 ] |
| 116 outputs = [ | 118 outputs = [ |
| 117 "$root_out_dir/installer/debian/{{source_file_part}}", | 119 "$root_out_dir/installer/debian/{{source_file_part}}", |
| 118 ] | 120 ] |
| 119 } | 121 } |
| 120 | 122 |
| 121 copy("theme_files") { | 123 copy("theme_files") { |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 # Other packages that we support that aren't included in the default "linux" | 353 # Other packages that we support that aren't included in the default "linux" |
| 352 # target. | 354 # target. |
| 353 linux_package("trunk") { | 355 linux_package("trunk") { |
| 354 channel = "trunk" | 356 channel = "trunk" |
| 355 } | 357 } |
| 356 if (is_asan) { | 358 if (is_asan) { |
| 357 linux_package("asan") { | 359 linux_package("asan") { |
| 358 channel = "asan" | 360 channel = "asan" |
| 359 } | 361 } |
| 360 } | 362 } |
| OLD | NEW |