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. |
11 | 11 |
12 if (current_cpu == "x86" || current_cpu == "x64") { | 12 if (current_cpu == "x86" || current_cpu == "x64") { |
13 import("//media/cdm/ppapi/cdm_paths.gni") | 13 import("//media/cdm/ppapi/cdm_paths.gni") |
14 } | 14 } |
15 | 15 |
16 assert(is_linux && is_chrome_branded) | 16 assert(is_linux && is_chrome_branded) |
17 | 17 |
18 # This target builds all "normal" Linux installers. | 18 # This target builds all "normal" Linux installers. |
19 # GYP version: chrome/chrome_installer.gypi:linux_packages_all | |
20 # | 19 # |
21 # The bot setup is to build stable, unstable, and beta packages for the current | 20 # The bot setup is to build stable, unstable, and beta packages for the current |
22 # build. Then a later step picks up the package corresponding to what the | 21 # build. Then a later step picks up the package corresponding to what the |
23 # current build is supposed to be. This is wasteful since one build will only | 22 # current build is supposed to be. This is wasteful since one build will only |
24 # be one of these. This build file also has targets for trunk and possibly asan | 23 # be one of these. This build file also has targets for trunk and possibly asan |
25 # installers. | 24 # installers. |
26 # | 25 # |
27 # TODO it would be much nicer to have a build variable so the bot can tell us | 26 # TODO it would be much nicer to have a build variable so the bot can tell us |
28 # what the current build should be, so we only have to make one .deb/.rpm pair. | 27 # what the current build should be, so we only have to make one .deb/.rpm pair. |
29 # | 28 # |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 # Other packages that we support that aren't included in the default "linux" | 346 # Other packages that we support that aren't included in the default "linux" |
348 # target. | 347 # target. |
349 linux_package("trunk") { | 348 linux_package("trunk") { |
350 channel = "trunk" | 349 channel = "trunk" |
351 } | 350 } |
352 if (is_asan) { | 351 if (is_asan) { |
353 linux_package("asan") { | 352 linux_package("asan") { |
354 channel = "asan" | 353 channel = "asan" |
355 } | 354 } |
356 } | 355 } |
OLD | NEW |