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

Side by Side Diff: chrome/tools/convert_dict/convert_dict.gyp

Issue 48623008: Extract convert_dict target from chrome.gyp. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'convert_dict_lib',
12 'product_name': 'convert_dict',
13 'type': 'static_library',
14 'variables': { 'enable_wexit_time_destructors': 1, },
15 'include_dirs': [
16 '../../../',
17 ],
18 'dependencies': [
19 '../../../base/base.gyp:base',
20 ],
21 'sources': [
22 'aff_reader.cc',
23 'aff_reader.h',
24 'dic_reader.cc',
25 'dic_reader.h',
26 'hunspell_reader.cc',
27 'hunspell_reader.h',
28 ],
29 },
30 {
31 'target_name': 'convert_dict',
32 'type': 'executable',
33 'variables': { 'enable_wexit_time_destructors': 1, },
34 'dependencies': [
35 '../../../base/base.gyp:base',
36 '../../../base/base.gyp:base_i18n',
37 '../../../third_party/hunspell/hunspell.gyp:hunspell',
38 'convert_dict_lib',
39 ],
40 'sources': [
41 'convert_dict.cc',
42 ],
43 },
44 ],
45 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698