OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 version: //components/spellcheck/common | 8 # GN version: //components/spellcheck/common |
9 'target_name': 'spellcheck_common', | 9 'target_name': 'spellcheck_common', |
10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'dependencies': [ |
| 12 '../third_party/icu/icu.gyp:icui18n', |
| 13 '../third_party/icu/icu.gyp:icuuc', |
| 14 ], |
11 'include_dirs': [ | 15 'include_dirs': [ |
12 '..', | 16 '..', |
13 ], | 17 ], |
14 'sources': [ | 18 'sources': [ |
| 19 "spellcheck/common/spellcheck_bdict_language.h", |
| 20 "spellcheck/common/spellcheck_common.cc", |
| 21 "spellcheck/common/spellcheck_common.h", |
| 22 "spellcheck/common/spellcheck_marker.h", |
| 23 "spellcheck/common/spellcheck_message_generator.cc", |
| 24 "spellcheck/common/spellcheck_message_generator.h", |
| 25 "spellcheck/common/spellcheck_messages.h", |
| 26 "spellcheck/common/spellcheck_result.h", |
15 'spellcheck/common/spellcheck_switches.cc', | 27 'spellcheck/common/spellcheck_switches.cc', |
16 'spellcheck/common/spellcheck_switches.h', | 28 'spellcheck/common/spellcheck_switches.h', |
17 ], | 29 ], |
18 }, | 30 }, |
19 ], | 31 ], |
20 } | 32 } |
OLD | NEW |