| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| 11 ], | 11 ], |
| 12 'targets': [ | 12 'targets': [ |
| 13 { | 13 { |
| 14 'target_name': 'printing', | 14 'target_name': 'printing', |
| 15 'type': 'static_library', | 15 'type': 'static_library', |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 18 ], | 18 ], |
| 19 'msvs_guid': '9E5416B9-B91B-4029-93F4-102C1AD5CAF4', |
| 19 'include_dirs': [ | 20 'include_dirs': [ |
| 20 '..', | 21 '..', |
| 21 ], | 22 ], |
| 22 'sources': [ | 23 'sources': [ |
| 23 'units.cc', | 24 'units.cc', |
| 24 'units.h', | 25 'units.h', |
| 25 ], | 26 ], |
| 26 'direct_dependent_settings': { | 27 'direct_dependent_settings': { |
| 27 'include_dirs': [ | 28 'include_dirs': [ |
| 28 '..', | 29 '..', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 44 'dependencies': [ | 45 'dependencies': [ |
| 45 'printing', | 46 'printing', |
| 46 '../testing/gtest.gyp:gtest', | 47 '../testing/gtest.gyp:gtest', |
| 47 ], | 48 ], |
| 48 'sources': [ | 49 'sources': [ |
| 49 'units_unittest.cc', | 50 'units_unittest.cc', |
| 50 ], | 51 ], |
| 51 }, | 52 }, |
| 52 ], | 53 ], |
| 53 } | 54 } |
| OLD | NEW |