| 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/process_version.gni") | 8 import("//build/util/process_version.gni") |
| 9 import("//build/util/version.gni") | 9 import("//build/util/version.gni") |
| 10 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | 10 import("//chrome/process_version_rc_template.gni") # For branding_file_path. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "common/prerm.include", | 77 "common/prerm.include", |
| 78 "common/repo.cron", | 78 "common/repo.cron", |
| 79 "common/rpm.include", | 79 "common/rpm.include", |
| 80 "common/rpmrepo.cron", | 80 "common/rpmrepo.cron", |
| 81 "common/symlinks.include", | 81 "common/symlinks.include", |
| 82 "common/variables.include", | 82 "common/variables.include", |
| 83 "common/wrapper", | 83 "common/wrapper", |
| 84 ] | 84 ] |
| 85 | 85 |
| 86 if (is_chrome_branded) { | 86 if (is_chrome_branded) { |
| 87 sources += [ "common/google-chrome/google-chrome.info" ] | 87 sources += [ |
| 88 "common/google-chrome/google-chrome.appdata.xml.template", |
| 89 "common/google-chrome/google-chrome.info", |
| 90 ] |
| 88 } else { | 91 } else { |
| 89 sources += [ "common/chromium-browser/chromium-browser.info" ] | 92 sources += [ |
| 93 "common/chromium-browser/chromium-browser.appdata.xml", |
| 94 "common/chromium-browser/chromium-browser.info", |
| 95 ] |
| 90 } | 96 } |
| 91 | 97 |
| 92 if (current_cpu == "x86") { | 98 if (current_cpu == "x86") { |
| 93 sources += [ "//build/linux/bin/eu-strip" ] | 99 sources += [ "//build/linux/bin/eu-strip" ] |
| 94 } else if (current_cpu == "x64") { | 100 } else if (current_cpu == "x64") { |
| 95 sources += [ "/usr/bin/eu-strip" ] | 101 sources += [ "/usr/bin/eu-strip" ] |
| 96 } | 102 } |
| 97 | 103 |
| 98 outputs = [ | 104 outputs = [ |
| 99 "$root_out_dir/installer/common/{{source_file_part}}", | 105 "$root_out_dir/installer/common/{{source_file_part}}", |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 # Other packages that we support that aren't included in the default "linux" | 360 # Other packages that we support that aren't included in the default "linux" |
| 355 # target. | 361 # target. |
| 356 linux_package("trunk") { | 362 linux_package("trunk") { |
| 357 channel = "trunk" | 363 channel = "trunk" |
| 358 } | 364 } |
| 359 if (is_asan) { | 365 if (is_asan) { |
| 360 linux_package("asan") { | 366 linux_package("asan") { |
| 361 channel = "asan" | 367 channel = "asan" |
| 362 } | 368 } |
| 363 } | 369 } |
| OLD | NEW |