OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN: //tools/cygprofile | 8 # GN: //tools/cygprofile |
9 'target_name': 'cygprofile', | 9 'target_name': 'cygprofile', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 12 matching lines...) Expand all Loading... |
23 }, | 23 }, |
24 { | 24 { |
25 # GN: //tools/cygprofile:cygprofile_unittests | 25 # GN: //tools/cygprofile:cygprofile_unittests |
26 'target_name': 'cygprofile_unittests', | 26 'target_name': 'cygprofile_unittests', |
27 'type': 'executable', | 27 'type': 'executable', |
28 'include_dirs': [ '../..', ], | 28 'include_dirs': [ '../..', ], |
29 'sources': [ | 29 'sources': [ |
30 'cygprofile_unittest.cc', | 30 'cygprofile_unittest.cc', |
31 ], | 31 ], |
32 'cflags!': [ '-finstrument-functions' ], | 32 'cflags!': [ '-finstrument-functions' ], |
33 # TODO(azarchs): Fix the underlying problem (crbug/485542) | 33 # TODO(lizeb,pasko): Fix the underlying problem (crbug/485542) |
34 'ldflags': [ '-Wl,--no-fatal-warnings' ], | 34 'ldflags': [ '-Wl,--no-fatal-warnings' ], |
35 'dependencies': [ | 35 'dependencies': [ |
36 'cygprofile', | 36 'cygprofile', |
37 '../../base/base.gyp:base', | 37 '../../base/base.gyp:base', |
38 '../../testing/gtest.gyp:gtest', | 38 '../../testing/gtest.gyp:gtest', |
39 ], | 39 ], |
40 }, | 40 }, |
41 ], | 41 ], |
42 } | 42 } |
OLD | NEW |