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/config/sysroot.gni") | 8 import("//build/config/sysroot.gni") |
9 import("//build/util/process_version.gni") | 9 import("//build/util/process_version.gni") |
10 import("//build/util/version.gni") | 10 import("//build/util/version.gni") |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 } | 108 } |
109 | 109 |
110 copy("deb_packaging_files") { | 110 copy("deb_packaging_files") { |
111 visibility = [ ":*" ] | 111 visibility = [ ":*" ] |
112 sources = [ | 112 sources = [ |
113 "debian/build.sh", | 113 "debian/build.sh", |
114 "debian/changelog.template", | 114 "debian/changelog.template", |
115 "debian/control.template", | 115 "debian/control.template", |
116 "debian/debian.menu", | 116 "debian/debian.menu", |
117 "debian/expected_deps_ia32_jessie", | 117 "debian/expected_deps_ia32_jessie", |
118 "debian/expected_deps_ia32_wheezy", | |
119 "debian/expected_deps_x64_jessie", | 118 "debian/expected_deps_x64_jessie", |
120 "debian/expected_deps_x64_wheezy", | |
121 "debian/postinst", | 119 "debian/postinst", |
122 "debian/postrm", | 120 "debian/postrm", |
123 "debian/prerm", | 121 "debian/prerm", |
124 ] | 122 ] |
125 outputs = [ | 123 outputs = [ |
126 "$root_out_dir/installer/debian/{{source_file_part}}", | 124 "$root_out_dir/installer/debian/{{source_file_part}}", |
127 ] | 125 ] |
128 } | 126 } |
129 | 127 |
130 copy("theme_files") { | 128 copy("theme_files") { |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 # Other packages that we support that aren't included in the default "linux" | 364 # Other packages that we support that aren't included in the default "linux" |
367 # target. | 365 # target. |
368 linux_package("trunk") { | 366 linux_package("trunk") { |
369 channel = "trunk" | 367 channel = "trunk" |
370 } | 368 } |
371 if (is_asan) { | 369 if (is_asan) { |
372 linux_package("asan") { | 370 linux_package("asan") { |
373 channel = "asan" | 371 channel = "asan" |
374 } | 372 } |
375 } | 373 } |
OLD | NEW |