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

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

Issue 1324623005: Move sanitizer and symbol flags out of BUILDCONFIG (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
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/sanitizers/sanitizers.gni")
6 import("//build/util/version.gni") 7 import("//build/util/version.gni")
7 import("//chrome/version.gni") 8 import("//chrome/version.gni")
8 9
9 assert(is_linux && is_chrome_branded) 10 assert(is_linux && is_chrome_branded)
10 11
11 # This target builds all "normal" Linux installers. 12 # This target builds all "normal" Linux installers.
12 # GYP version: chrome/chrome_installer.gypi:linux_packages_all 13 # GYP version: chrome/chrome_installer.gypi:linux_packages_all
13 # 14 #
14 # The bot setup is to build stable, unstable, and beta packages for the current 15 # The bot setup is to build stable, unstable, and beta packages for the current
15 # build. Then a later step picks up the package corresponding to what the 16 # build. Then a later step picks up the package corresponding to what the
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 # Other packages that we support that aren't included in the default "linux" 311 # Other packages that we support that aren't included in the default "linux"
311 # target. 312 # target.
312 linux_package("trunk") { 313 linux_package("trunk") {
313 channel = "trunk" 314 channel = "trunk"
314 } 315 }
315 if (is_asan) { 316 if (is_asan) {
316 linux_package("asan") { 317 linux_package("asan") {
317 channel = "asan" 318 channel = "asan"
318 } 319 }
319 } 320 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698