| 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/process_version_rc_template.gni") |
| 10 import("//build/util/version.gni") | 11 import("//build/util/version.gni") |
| 11 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | |
| 12 | 12 |
| 13 if (current_cpu == "x86" || current_cpu == "x64") { | 13 if (current_cpu == "x86" || current_cpu == "x64") { |
| 14 import("//media/cdm/ppapi/cdm_paths.gni") | 14 import("//media/cdm/ppapi/cdm_paths.gni") |
| 15 } | 15 } |
| 16 | 16 |
| 17 assert(is_linux) | 17 assert(is_linux) |
| 18 | 18 |
| 19 # This target builds all "normal" Linux installers. | 19 # This target builds all "normal" Linux installers. |
| 20 # | 20 # |
| 21 # The bot setup is to build stable, unstable, and beta packages for the current | 21 # The bot setup is to build stable, unstable, and beta packages for the current |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 # Other packages that we support that aren't included in the default "linux" | 352 # Other packages that we support that aren't included in the default "linux" |
| 353 # target. | 353 # target. |
| 354 linux_package("trunk") { | 354 linux_package("trunk") { |
| 355 channel = "trunk" | 355 channel = "trunk" |
| 356 } | 356 } |
| 357 if (is_asan) { | 357 if (is_asan) { |
| 358 linux_package("asan") { | 358 linux_package("asan") { |
| 359 channel = "asan" | 359 channel = "asan" |
| 360 } | 360 } |
| 361 } | 361 } |
| OLD | NEW |