| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 # | 43 # |
| 44 # before you build. | 44 # before you build. |
| 45 group("linux") { | 45 group("linux") { |
| 46 deps = [ | 46 deps = [ |
| 47 ":beta", | 47 ":beta", |
| 48 ":stable", | 48 ":stable", |
| 49 ":unstable", | 49 ":unstable", |
| 50 ] | 50 ] |
| 51 } | 51 } |
| 52 | 52 |
| 53 # This target is provided for compatibility w/ GYP. Users should always | |
| 54 # depend directly on :linux instead of this target (we set visibility | |
| 55 # to the empty list to prevent unwanted callers). | |
| 56 # TODO(GYP_GONE): Delete this target after we've migrated away from GYP and | |
| 57 # updated the bots to build :linux instead. | |
| 58 group("linux_packages_all") { | |
| 59 visibility = [] | |
| 60 deps = [ | |
| 61 ":linux", | |
| 62 ] | |
| 63 } | |
| 64 | |
| 65 branding_dir = "//chrome/app/theme/$branding_path_component" | 53 branding_dir = "//chrome/app/theme/$branding_path_component" |
| 66 branding_dir_100 = | 54 branding_dir_100 = |
| 67 "//chrome/app/theme/default_100_percent/$branding_path_component" | 55 "//chrome/app/theme/default_100_percent/$branding_path_component" |
| 68 | 56 |
| 69 copy("common_packaging_files") { | 57 copy("common_packaging_files") { |
| 70 visibility = [ ":*" ] | 58 visibility = [ ":*" ] |
| 71 sources = [ | 59 sources = [ |
| 72 "common/apt.include", | 60 "common/apt.include", |
| 73 "common/default-app-block.template", | 61 "common/default-app-block.template", |
| 74 "common/default-app.template", | 62 "common/default-app.template", |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 # 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" |
| 365 # target. | 353 # target. |
| 366 linux_package("trunk") { | 354 linux_package("trunk") { |
| 367 channel = "trunk" | 355 channel = "trunk" |
| 368 } | 356 } |
| 369 if (is_asan) { | 357 if (is_asan) { |
| 370 linux_package("asan") { | 358 linux_package("asan") { |
| 371 channel = "asan" | 359 channel = "asan" |
| 372 } | 360 } |
| 373 } | 361 } |
| OLD | NEW |