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/sanitizers/sanitizers.gni") |
6 import("//build/util/version.gni") | 7 import("//build/util/version.gni") |
7 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
8 | 9 |
9 assert(is_linux && is_chrome_branded) | 10 assert(is_linux && is_chrome_branded) |
10 | 11 |
11 # This target builds all "normal" Linux installers. | 12 # This target builds all "normal" Linux installers. |
12 # GYP version: chrome/chrome_installer.gypi:linux_packages_all | 13 # GYP version: chrome/chrome_installer.gypi:linux_packages_all |
13 # | 14 # |
14 # The bot setup is to build stable, unstable, and beta packages for the current | 15 # The bot setup is to build stable, unstable, and beta packages for the current |
15 # build. Then a later step picks up the package corresponding to what the | 16 # build. Then a later step picks up the package corresponding to what the |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 # Other packages that we support that aren't included in the default "linux" | 311 # Other packages that we support that aren't included in the default "linux" |
311 # target. | 312 # target. |
312 linux_package("trunk") { | 313 linux_package("trunk") { |
313 channel = "trunk" | 314 channel = "trunk" |
314 } | 315 } |
315 if (is_asan) { | 316 if (is_asan) { |
316 linux_package("asan") { | 317 linux_package("asan") { |
317 channel = "asan" | 318 channel = "asan" |
318 } | 319 } |
319 } | 320 } |
OLD | NEW |