OLD | NEW |
(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 'variables': { |
| 7 }, |
| 8 'targets': [ |
| 9 { |
| 10 'target_name': 'cygprofile_startup', |
| 11 'type': 'static_library', |
| 12 'sources': [ |
| 13 'cygprofile_startup.h', |
| 14 'cygprofile_startup.cc', |
| 15 ], |
| 16 }, |
| 17 { |
| 18 'target_name': 'cygprofile_startup_test', |
| 19 'type': 'executable', |
| 20 'dependencies': [ |
| 21 './cygprofile_startup.gyp:cygprofile_startup', |
| 22 ], |
| 23 'sources': [ |
| 24 'cygprofile_startup_unittest.cc', |
| 25 'cygprofile_startup.h', |
| 26 ], |
| 27 }, |
| 28 ], |
| 29 } |
OLD | NEW |