| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "-b", | 282 "-b", |
| 283 rebase_path(root_out_dir, root_build_dir), | 283 rebase_path(root_out_dir, root_build_dir), |
| 284 "-a", | 284 "-a", |
| 285 build_script_arch, | 285 build_script_arch, |
| 286 "-c", | 286 "-c", |
| 287 invoker.channel, | 287 invoker.channel, |
| 288 "-d", | 288 "-d", |
| 289 branding_path_component, | 289 branding_path_component, |
| 290 "-s", | 290 "-s", |
| 291 rebase_path(sysroot), | 291 rebase_path(sysroot), |
| 292 "-e", | |
| 293 rebase_path("//third_party/dpkg-dev"), | |
| 294 ] | 292 ] |
| 295 deps = [ | 293 deps = [ |
| 296 ":installer_deps", | 294 ":installer_deps", |
| 297 ] | 295 ] |
| 298 } | 296 } |
| 299 | 297 |
| 300 if (!is_chromeos) { | 298 if (!is_chromeos) { |
| 301 rpm_target_name = "${target_name}_rpm" | 299 rpm_target_name = "${target_name}_rpm" |
| 302 action(rpm_target_name) { | 300 action(rpm_target_name) { |
| 303 visibility = [ ":*" ] | 301 visibility = [ ":*" ] |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 # Other packages that we support that aren't included in the default "linux" | 360 # Other packages that we support that aren't included in the default "linux" |
| 363 # target. | 361 # target. |
| 364 linux_package("trunk") { | 362 linux_package("trunk") { |
| 365 channel = "trunk" | 363 channel = "trunk" |
| 366 } | 364 } |
| 367 if (is_asan) { | 365 if (is_asan) { |
| 368 linux_package("asan") { | 366 linux_package("asan") { |
| 369 channel = "asan" | 367 channel = "asan" |
| 370 } | 368 } |
| 371 } | 369 } |
| OLD | NEW |