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

Side by Side Diff: tools/cygprofile/cygprofile.gyp

Issue 2331893004: Remove GYP files in breakpad, build, and tools. (Closed)
Patch Set: Created 4 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 | « tools/battor_agent/battor_agent.gyp ('k') | tools/gn/gn.gyp » ('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 (c) 2011 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 {
6 'targets': [
7 {
8 # GN: //tools/cygprofile
9 'target_name': 'cygprofile',
10 'type': 'static_library',
11 'include_dirs': [ '../..', ],
12 'sources': [
13 'cygprofile.cc',
14 'cygprofile.h',
15 ],
16 'cflags!': [ '-finstrument-functions' ],
17 'dependencies': [
18 # This adds uninstrumented symbols to the static library from base.
19 # These symbols are likely *not* to be used because there are many
20 # other duplicates in other objects/libraries.
21 '../../base/base.gyp:base',
22 ],
23 },
24 {
25 # GN: //tools/cygprofile:cygprofile_unittests
26 'target_name': 'cygprofile_unittests',
27 'type': 'executable',
28 'include_dirs': [ '../..', ],
29 'sources': [
30 'cygprofile_unittest.cc',
31 ],
32 'cflags!': [ '-finstrument-functions' ],
33 # TODO(lizeb,pasko): Fix the underlying problem (crbug/485542)
34 'ldflags': [ '-Wl,--no-fatal-warnings' ],
35 'dependencies': [
36 'cygprofile',
37 '../../base/base.gyp:base',
38 '../../testing/gtest.gyp:gtest',
39 ],
40 },
41 ],
42 }
OLDNEW
« no previous file with comments | « tools/battor_agent/battor_agent.gyp ('k') | tools/gn/gn.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698