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

Unified 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, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/convert_dict/convert_dict.gyp
diff --git a/chrome/tools/convert_dict/convert_dict.gyp b/chrome/tools/convert_dict/convert_dict.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..973d8f51fca6277b64cc6854084cf11b3614b348
--- /dev/null
+++ b/chrome/tools/convert_dict/convert_dict.gyp
@@ -0,0 +1,45 @@
+# Copyright 2013 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'convert_dict_lib',
+ 'product_name': 'convert_dict',
+ 'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'include_dirs': [
+ '../../../',
+ ],
+ 'dependencies': [
+ '../../../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'aff_reader.cc',
+ 'aff_reader.h',
+ 'dic_reader.cc',
+ 'dic_reader.h',
+ 'hunspell_reader.cc',
+ 'hunspell_reader.h',
+ ],
+ },
+ {
+ 'target_name': 'convert_dict',
+ 'type': 'executable',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'dependencies': [
+ '../../../base/base.gyp:base',
+ '../../../base/base.gyp:base_i18n',
+ '../../../third_party/hunspell/hunspell.gyp:hunspell',
+ 'convert_dict_lib',
+ ],
+ 'sources': [
+ 'convert_dict.cc',
+ ],
+ },
+ ],
+}
« 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