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

Unified Diff: chrome/tools/convert_dict/BUILD.gn

Issue 880873003: Add unit tests target to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/test/BUILD.gn ('k') | chrome/tools/convert_dict/convert_dict.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/convert_dict/BUILD.gn
diff --git a/chrome/tools/convert_dict/BUILD.gn b/chrome/tools/convert_dict/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..108eb19e49936d2d066f8b8d5d5b8be119afcdcd
--- /dev/null
+++ b/chrome/tools/convert_dict/BUILD.gn
@@ -0,0 +1,37 @@
+# Copyright 2015 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.
+
+source_set("lib") {
+ # Production code shouldn't be depending on this.
+ testonly = true
+
+ sources = [
+ "aff_reader.cc",
+ "aff_reader.h",
+ "dic_reader.cc",
+ "dic_reader.h",
+ "hunspell_reader.cc",
+ "hunspell_reader.h",
+ ]
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+ deps = [
+ "//base",
+ ]
+}
+
+executable("convert_dict") {
+ # Production code shouldn't be depending on this.
+ testonly = true
+
+ sources = [
+ "convert_dict.cc",
+ ]
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+ deps = [
+ ":lib",
+ "//base",
+ "//base:i18n",
+ "//third_party/hunspell",
+ ]
+}
« no previous file with comments | « chrome/test/BUILD.gn ('k') | chrome/tools/convert_dict/convert_dict.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698