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

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

Issue 1957683002: Address more TODO(GYP) in the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@todo
Patch Set: iOS Created 4 years, 7 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 | « chrome/installer/BUILD.gn ('k') | chrome/installer/mini_installer/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/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
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
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 }
OLDNEW
« no previous file with comments | « chrome/installer/BUILD.gn ('k') | chrome/installer/mini_installer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698