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

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

Issue 930933003: Add GN targets for codesighs and telemetry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: only include app_shell_unittests when enable_extensions==true Created 5 years, 10 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 | « BUILD.gn ('k') | tools/telemetry/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
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/features.gni")
6
7 executable("codesighs") {
8 sources = [
9 "codesighs.c",
10 ]
11
12 configs -= [ "//build/config/compiler:chromium_code" ]
13 configs += [ "//build/config/compiler:no_chromium_code" ]
14 }
15
16 executable("maptsvdifftool") {
17 sources = [
18 "maptsvdifftool.c",
19 ]
20
21 configs -= [ "//build/config/compiler:chromium_code" ]
22 configs += [ "//build/config/compiler:no_chromium_code" ]
23 }
24
25 if (is_win) {
26 executable("msmap2tsv") {
27 sources = [
28 "msmap2tsv.c",
29 ]
30
31 libs += [ "dbghelp.lib" ]
32
33 configs -= [ "//build/config/compiler:chromium_code" ]
34 configs += [ "//build/config/compiler:no_chromium_code" ]
35 }
36
37 executable("msdump2symdb") {
38 sources = [
39 "msdump2symdb.c",
40 ]
41
42 configs -= [ "//build/config/compiler:chromium_code" ]
43 configs += [ "//build/config/compiler:no_chromium_code" ]
44 }
45 } else {
46 executable("nm2tsv") {
47 sources = [
48 "nm2tsv.c",
49 ]
50
51 configs -= [ "//build/config/compiler:chromium_code" ]
52 configs += [ "//build/config/compiler:no_chromium_code" ]
53 }
54 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | tools/telemetry/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698