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.
8 'target_name': 'cygprofile',
9 'type': 'static_library',
10 'include_dirs': [ '../..', ],
15 'cflags!': [ '-finstrument-functions' ],
17 # This adds uninstrumented symbols to the static library from base.
18 # These symbols are likely *not* to be used because there are many
19 # other duplicates in other objects/libraries.
20 '../../base/base.gyp:base',
24 'target_name': 'cygprofile_unittests',
26 'include_dirs': [ '../..', ],
28 'cygprofile_unittest.cc',
30 'cflags!': [ '-finstrument-functions' ],
31 # TODO(azarchs): Fix the underlying problem (crbug/485542)
32 'ldflags': [ '-Wl,--no-fatal-warnings' ],
35 '../../base/base.gyp:base',
36 '../../testing/gtest.gyp:gtest',