| 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/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 deps = [ | 41 deps = [ |
| 42 ":beta", | 42 ":beta", |
| 43 ":stable", | 43 ":stable", |
| 44 ":unstable", | 44 ":unstable", |
| 45 ] | 45 ] |
| 46 } | 46 } |
| 47 | 47 |
| 48 # This target is provided for compatibility w/ GYP. Users should always | 48 # This target is provided for compatibility w/ GYP. Users should always |
| 49 # depend directly on :linux instead of this target (we set visibility | 49 # depend directly on :linux instead of this target (we set visibility |
| 50 # to the empty list to prevent unwanted callers). | 50 # to the empty list to prevent unwanted callers). |
| 51 # TODO(GYP): Delete this target after we've migrated away from GYP and | 51 # TODO(GYP_GONE): Delete this target after we've migrated away from GYP and |
| 52 # updated the bots to build :linux instead. | 52 # updated the bots to build :linux instead. |
| 53 group("linux_packages_all") { | 53 group("linux_packages_all") { |
| 54 visibility = [] | 54 visibility = [] |
| 55 deps = [ | 55 deps = [ |
| 56 ":linux", | 56 ":linux", |
| 57 ] | 57 ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 branding_dir = "//chrome/app/theme/$branding_path_component" | 60 branding_dir = "//chrome/app/theme/$branding_path_component" |
| 61 branding_dir_100 = | 61 branding_dir_100 = |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 # Other packages that we support that aren't included in the default "linux" | 340 # Other packages that we support that aren't included in the default "linux" |
| 341 # target. | 341 # target. |
| 342 linux_package("trunk") { | 342 linux_package("trunk") { |
| 343 channel = "trunk" | 343 channel = "trunk" |
| 344 } | 344 } |
| 345 if (is_asan) { | 345 if (is_asan) { |
| 346 linux_package("asan") { | 346 linux_package("asan") { |
| 347 channel = "asan" | 347 channel = "asan" |
| 348 } | 348 } |
| 349 } | 349 } |
| OLD | NEW |