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

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

Issue 2321703002: Remove all gyp[i] files in //chrome (Closed)
Patch Set: merge Created 4 years, 3 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
« no previous file with comments | « chrome/third_party/chromevox/chromevox.gyp ('k') | chrome/version_resource_rules.gypi » ('j') | 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 # GN version: //chrome/tools/convert_dict:lib
12 'target_name': 'convert_dict_lib',
13 'product_name': 'convert_dict',
14 'type': 'static_library',
15 'variables': { 'enable_wexit_time_destructors': 1, },
16 'include_dirs': [
17 '../../../',
18 ],
19 'dependencies': [
20 '../../../base/base.gyp:base',
21 ],
22 'sources': [
23 'aff_reader.cc',
24 'aff_reader.h',
25 'dic_reader.cc',
26 'dic_reader.h',
27 'hunspell_reader.cc',
28 'hunspell_reader.h',
29 ],
30 },
31 {
32 'target_name': 'convert_dict',
33 'type': 'executable',
34 'variables': { 'enable_wexit_time_destructors': 1, },
35 'dependencies': [
36 '../../../base/base.gyp:base',
37 '../../../base/base.gyp:base_i18n',
38 '../../../third_party/hunspell/hunspell.gyp:hunspell',
39 'convert_dict_lib',
40 ],
41 'sources': [
42 'convert_dict.cc',
43 ],
44 },
45 ],
46 }
OLDNEW
« no previous file with comments | « chrome/third_party/chromevox/chromevox.gyp ('k') | chrome/version_resource_rules.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698