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

Unified Diff: chrome/tools/profile_reset/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/tools/convert_dict/convert_dict.gyp ('k') | chrome/tools/profile_reset/jtl_compiler.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/profile_reset/BUILD.gn
diff --git a/chrome/tools/profile_reset/BUILD.gn b/chrome/tools/profile_reset/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d58b38dd87153c23718c89fbb1405540b563709d
--- /dev/null
+++ b/chrome/tools/profile_reset/BUILD.gn
@@ -0,0 +1,31 @@
+# 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.
+
+executable("jtl_compiler") {
+ sources = [
+ "//chrome/browser/profile_resetter/jtl_foundation.cc",
+ "//chrome/browser/profile_resetter/jtl_foundation.h",
+ "jtl_compiler_frontend.cc",
+ ]
+ deps = [
+ ":jtl_compiler_lib",
+ "//base",
+ "//crypto",
+ ]
+}
+
+source_set("jtl_compiler_lib") {
+ sources = [
+ "//chrome/browser/profile_resetter/jtl_foundation.h",
+ "//chrome/browser/profile_resetter/jtl_instructions.h",
+ "jtl_compiler.h",
+ "jtl_compiler.cc",
+ "jtl_parser.h",
+ "jtl_parser.cc",
+ ]
+ deps = [
+ "//base",
+ "//third_party/re2",
+ ]
+}
« no previous file with comments | « chrome/tools/convert_dict/convert_dict.gyp ('k') | chrome/tools/profile_reset/jtl_compiler.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698