| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 # GN version: //chrome/tools/convert_dict:lib |
| 11 'target_name': 'convert_dict_lib', | 12 'target_name': 'convert_dict_lib', |
| 12 'product_name': 'convert_dict', | 13 'product_name': 'convert_dict', |
| 13 'type': 'static_library', | 14 'type': 'static_library', |
| 14 'variables': { 'enable_wexit_time_destructors': 1, }, | 15 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 15 'include_dirs': [ | 16 'include_dirs': [ |
| 16 '../../../', | 17 '../../../', |
| 17 ], | 18 ], |
| 18 'dependencies': [ | 19 'dependencies': [ |
| 19 '../../../base/base.gyp:base', | 20 '../../../base/base.gyp:base', |
| 20 ], | 21 ], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 36 '../../../base/base.gyp:base_i18n', | 37 '../../../base/base.gyp:base_i18n', |
| 37 '../../../third_party/hunspell/hunspell.gyp:hunspell', | 38 '../../../third_party/hunspell/hunspell.gyp:hunspell', |
| 38 'convert_dict_lib', | 39 'convert_dict_lib', |
| 39 ], | 40 ], |
| 40 'sources': [ | 41 'sources': [ |
| 41 'convert_dict.cc', | 42 'convert_dict.cc', |
| 42 ], | 43 ], |
| 43 }, | 44 }, |
| 44 ], | 45 ], |
| 45 } | 46 } |
| OLD | NEW |