OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 |
| 6 # probably just skip on iOS |
| 7 |
| 8 source_set("common") { |
| 9 sources = [ |
| 10 "spellcheck_bdict_language.h", |
| 11 "spellcheck_common.cc", |
| 12 "spellcheck_common.h", |
| 13 "spellcheck_marker.h", |
| 14 "spellcheck_messages.h", |
| 15 "spellcheck_result.h", |
| 16 ] |
| 17 |
| 18 deps = [ |
| 19 "//base", |
| 20 "//ipc", |
| 21 "//third_party/icu", |
| 22 ] |
| 23 } |
OLD | NEW |