| Index: components/spellcheck/common/BUILD.gn
|
| diff --git a/components/spellcheck/common/BUILD.gn b/components/spellcheck/common/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..656453d0e1cdccbadce6b7e1dd5faa7eb4aa5904
|
| --- /dev/null
|
| +++ b/components/spellcheck/common/BUILD.gn
|
| @@ -0,0 +1,23 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +
|
| +# probably just skip on iOS
|
| +
|
| +source_set("common") {
|
| + sources = [
|
| + "spellcheck_bdict_language.h",
|
| + "spellcheck_common.cc",
|
| + "spellcheck_common.h",
|
| + "spellcheck_marker.h",
|
| + "spellcheck_messages.h",
|
| + "spellcheck_result.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//ipc",
|
| + "//third_party/icu",
|
| + ]
|
| +}
|
|
|