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

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

Issue 2424093003: Include the AppData file for Chrome and Chromium (Closed)
Patch Set: Remove the Chromium AppData template to avoid duplicity Created 3 years, 9 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 | « no previous file | chrome/installer/linux/common/chromium-browser/chromium-browser.appdata.xml » ('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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "common/prerm.include", 78 "common/prerm.include",
79 "common/repo.cron", 79 "common/repo.cron",
80 "common/rpm.include", 80 "common/rpm.include",
81 "common/rpmrepo.cron", 81 "common/rpmrepo.cron",
82 "common/symlinks.include", 82 "common/symlinks.include",
83 "common/variables.include", 83 "common/variables.include",
84 "common/wrapper", 84 "common/wrapper",
85 ] 85 ]
86 86
87 if (is_chrome_branded) { 87 if (is_chrome_branded) {
88 sources += [ "common/google-chrome/google-chrome.info" ] 88 sources += [
89 "common/google-chrome/google-chrome.appdata.xml.template",
90 "common/google-chrome/google-chrome.info",
91 ]
89 } else { 92 } else {
90 sources += [ "common/chromium-browser/chromium-browser.info" ] 93 sources += [
94 "common/chromium-browser/chromium-browser.appdata.xml",
95 "common/chromium-browser/chromium-browser.info",
96 ]
91 } 97 }
92 98
93 if (current_cpu == "x86") { 99 if (current_cpu == "x86") {
94 sources += [ "//build/linux/bin/eu-strip" ] 100 sources += [ "//build/linux/bin/eu-strip" ]
95 } else if (current_cpu == "x64") { 101 } else if (current_cpu == "x64") {
96 sources += [ "/usr/bin/eu-strip" ] 102 sources += [ "/usr/bin/eu-strip" ]
97 } 103 }
98 104
99 outputs = [ 105 outputs = [
100 "$root_out_dir/installer/common/{{source_file_part}}", 106 "$root_out_dir/installer/common/{{source_file_part}}",
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 # Other packages that we support that aren't included in the default "linux" 366 # Other packages that we support that aren't included in the default "linux"
361 # target. 367 # target.
362 linux_package("trunk") { 368 linux_package("trunk") {
363 channel = "trunk" 369 channel = "trunk"
364 } 370 }
365 if (is_asan) { 371 if (is_asan) {
366 linux_package("asan") { 372 linux_package("asan") {
367 channel = "asan" 373 channel = "asan"
368 } 374 }
369 } 375 }
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/linux/common/chromium-browser/chromium-browser.appdata.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698