Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: chrome/installer/linux/BUILD.gn

Issue 2831243002: Revert of Address some TODO(GYP_GONE)s (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « breakpad/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
53 branding_dir = "//chrome/app/theme/$branding_path_component" 65 branding_dir = "//chrome/app/theme/$branding_path_component"
54 branding_dir_100 = 66 branding_dir_100 =
55 "//chrome/app/theme/default_100_percent/$branding_path_component" 67 "//chrome/app/theme/default_100_percent/$branding_path_component"
56 68
57 copy("common_packaging_files") { 69 copy("common_packaging_files") {
58 visibility = [ ":*" ] 70 visibility = [ ":*" ]
59 sources = [ 71 sources = [
60 "common/apt.include", 72 "common/apt.include",
61 "common/default-app-block.template", 73 "common/default-app-block.template",
62 "common/default-app.template", 74 "common/default-app.template",
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 # Other packages that we support that aren't included in the default "linux" 364 # Other packages that we support that aren't included in the default "linux"
353 # target. 365 # target.
354 linux_package("trunk") { 366 linux_package("trunk") {
355 channel = "trunk" 367 channel = "trunk"
356 } 368 }
357 if (is_asan) { 369 if (is_asan) {
358 linux_package("asan") { 370 linux_package("asan") {
359 channel = "asan" 371 channel = "asan"
360 } 372 }
361 } 373 }
OLDNEW
« no previous file with comments | « breakpad/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698