Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: components/spellcheck.gypi

Issue 2177343002: Componentize spellcheck [2]: move common/ files to component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move message generator to component Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck_unittest.cc ('k') | components/spellcheck/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698