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

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

Issue 1318343003: Annotate GN executables and shared_libraries with sanitizer deps. (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
« no previous file with comments | « chrome/installer/mini_installer/BUILD.gn ('k') | chrome/installer/test/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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 if (is_win) { 7 if (is_win) {
8 executable("setup") { 8 executable("setup") {
9 sources = [ 9 sources = [
10 "setup.ico", 10 "setup.ico",
11 "setup.rc", 11 "setup.rc",
12 "setup_exe_version.rc.version", 12 "setup_exe_version.rc.version",
13 "setup_main.cc", 13 "setup_main.cc",
14 "setup_main.h", 14 "setup_main.h",
15 "setup_resource.h", 15 "setup_resource.h",
16 "uninstall.cc", 16 "uninstall.cc",
17 "uninstall.h", 17 "uninstall.h",
18 ] 18 ]
19 19
20 configs -= [ "//build/config/win:console" ] 20 configs -= [ "//build/config/win:console" ]
21 configs += [ "//build/config/win:windowed" ] 21 configs += [ "//build/config/win:windowed" ]
22 22
23 deps = [ 23 deps = [
24 ":lib", 24 ":lib",
25 "//build/config/sanitizers:deps",
25 ] 26 ]
26 } 27 }
27 28
28 source_set("lib") { 29 source_set("lib") {
29 sources = [ 30 sources = [
30 "app_launcher_installer.cc", 31 "app_launcher_installer.cc",
31 "app_launcher_installer.h", 32 "app_launcher_installer.h",
32 "archive_patch_helper.cc", 33 "archive_patch_helper.cc",
33 "archive_patch_helper.h", 34 "archive_patch_helper.h",
34 "install.cc", 35 "install.cc",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "//base:i18n", 73 "//base:i18n",
73 "//base/test:test_support", 74 "//base/test:test_support",
74 "//chrome/installer/mini_installer:unit_tests", 75 "//chrome/installer/mini_installer:unit_tests",
75 "//chrome/installer/util:strings", 76 "//chrome/installer/util:strings",
76 "//chrome/installer/util:util", 77 "//chrome/installer/util:util",
77 "//testing/gmock", 78 "//testing/gmock",
78 "//testing/gtest", 79 "//testing/gtest",
79 ] 80 ]
80 } 81 }
81 } 82 }
OLDNEW
« no previous file with comments | « chrome/installer/mini_installer/BUILD.gn ('k') | chrome/installer/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698