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

Side by Side Diff: extensions/shell/installer/linux/BUILD.gn

Issue 2945763003: Move process_version_rc_template.gni to build/util (Closed)
Patch Set: Created 3 years, 6 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 | « components/version_info/BUILD.gn ('k') | media/cdm/ppapi/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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 # TODO(michaelpg): Dedupe with Chrome installer. 5 # TODO(michaelpg): Dedupe with Chrome installer.
6 6
7 import("//build/config/chrome_build.gni") 7 import("//build/config/chrome_build.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 import("//build/config/sysroot.gni") 10 import("//build/config/sysroot.gni")
11 import("//build/util/process_version_rc_template.gni")
11 import("//build/util/version.gni") 12 import("//build/util/version.gni")
12 import("//chrome/process_version_rc_template.gni") # For branding_file_path.
13 13
14 assert(is_desktop_linux) 14 assert(is_desktop_linux)
15 assert(current_cpu == "x64") 15 assert(current_cpu == "x64")
16 16
17 # The packages list the exact versions of each library used. The versions used 17 # The packages list the exact versions of each library used. The versions used
18 # on the bots are likely different than those on your workstation, so you'll 18 # on the bots are likely different than those on your workstation, so you'll
19 # get a stream of errors like: 19 # get a stream of errors like:
20 # < libasound2 (>= 1.0.23) 20 # < libasound2 (>= 1.0.23)
21 # --- 21 # ---
22 # > libasound2 (>= 1.0.16) 22 # > libasound2 (>= 1.0.16)
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 # Other packages that we support that aren't included in the default "linux" 211 # Other packages that we support that aren't included in the default "linux"
212 # target. 212 # target.
213 linux_package("trunk") { 213 linux_package("trunk") {
214 channel = "trunk" 214 channel = "trunk"
215 } 215 }
216 if (is_asan) { 216 if (is_asan) {
217 linux_package("asan") { 217 linux_package("asan") {
218 channel = "asan" 218 channel = "asan"
219 } 219 }
220 } 220 }
OLDNEW
« no previous file with comments | « components/version_info/BUILD.gn ('k') | media/cdm/ppapi/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698