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

Side by Side Diff: third_party/codesighs/BUILD.gn

Issue 1925493002: Add manifests to many more gn built exe files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « sync/BUILD.gn ('k') | third_party/opus/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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 6
7 executable("codesighs") { 7 executable("codesighs") {
8 sources = [ 8 sources = [
9 "codesighs.c", 9 "codesighs.c",
10 ] 10 ]
11 11
12 configs -= [ "//build/config/compiler:chromium_code" ] 12 configs -= [ "//build/config/compiler:chromium_code" ]
13 configs += [ "//build/config/compiler:no_chromium_code" ] 13 configs += [ "//build/config/compiler:no_chromium_code" ]
14 14
15 deps = [ 15 deps = [
16 "//build/config/sanitizers:deps", 16 "//build/config/sanitizers:deps",
17 "//build/win:default_exe_manifest",
17 ] 18 ]
18 } 19 }
19 20
20 executable("maptsvdifftool") { 21 executable("maptsvdifftool") {
21 sources = [ 22 sources = [
22 "maptsvdifftool.c", 23 "maptsvdifftool.c",
23 ] 24 ]
24 25
25 configs -= [ "//build/config/compiler:chromium_code" ] 26 configs -= [ "//build/config/compiler:chromium_code" ]
26 configs += [ "//build/config/compiler:no_chromium_code" ] 27 configs += [ "//build/config/compiler:no_chromium_code" ]
27 28
28 deps = [ 29 deps = [
29 "//build/config/sanitizers:deps", 30 "//build/config/sanitizers:deps",
31 "//build/win:default_exe_manifest",
30 ] 32 ]
31 } 33 }
32 34
33 if (is_win) { 35 if (is_win) {
34 executable("msmap2tsv") { 36 executable("msmap2tsv") {
35 sources = [ 37 sources = [
36 "msmap2tsv.c", 38 "msmap2tsv.c",
37 ] 39 ]
38 40
39 libs = [ "dbghelp.lib" ] 41 libs = [ "dbghelp.lib" ]
40 42
41 configs -= [ "//build/config/compiler:chromium_code" ] 43 configs -= [ "//build/config/compiler:chromium_code" ]
42 configs += [ "//build/config/compiler:no_chromium_code" ] 44 configs += [ "//build/config/compiler:no_chromium_code" ]
43 45
44 deps = [ 46 deps = [
45 "//build/config/sanitizers:deps", 47 "//build/config/sanitizers:deps",
48 "//build/win:default_exe_manifest",
46 ] 49 ]
47 } 50 }
48 51
49 executable("msdump2symdb") { 52 executable("msdump2symdb") {
50 sources = [ 53 sources = [
51 "msdump2symdb.c", 54 "msdump2symdb.c",
52 ] 55 ]
53 56
54 configs -= [ "//build/config/compiler:chromium_code" ] 57 configs -= [ "//build/config/compiler:chromium_code" ]
55 configs += [ "//build/config/compiler:no_chromium_code" ] 58 configs += [ "//build/config/compiler:no_chromium_code" ]
56 59
57 deps = [ 60 deps = [
58 "//build/config/sanitizers:deps", 61 "//build/config/sanitizers:deps",
62 "//build/win:default_exe_manifest",
59 ] 63 ]
60 } 64 }
61 } else { 65 } else {
62 executable("nm2tsv") { 66 executable("nm2tsv") {
63 sources = [ 67 sources = [
64 "nm2tsv.c", 68 "nm2tsv.c",
65 ] 69 ]
66 70
67 configs -= [ "//build/config/compiler:chromium_code" ] 71 configs -= [ "//build/config/compiler:chromium_code" ]
68 configs += [ "//build/config/compiler:no_chromium_code" ] 72 configs += [ "//build/config/compiler:no_chromium_code" ]
69 73
70 deps = [ 74 deps = [
71 "//build/config/sanitizers:deps", 75 "//build/config/sanitizers:deps",
72 ] 76 ]
73 } 77 }
74 } 78 }
OLDNEW
« no previous file with comments | « sync/BUILD.gn ('k') | third_party/opus/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698