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

Unified Diff: chrome/install_static/BUILD.gn

Issue 2017853002: Add functionality to the install_static library to tokenize strings and compare versions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add install_static_unittests to other windows bots Created 4 years, 7 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
Index: chrome/install_static/BUILD.gn
diff --git a/chrome/install_static/BUILD.gn b/chrome/install_static/BUILD.gn
index 14d875e0b33df4184e7ac06997ddf0d3ca7b91ae..ec8ff5f6f49f43c188f1484cf7662d82a8c3179c 100644
--- a/chrome/install_static/BUILD.gn
+++ b/chrome/install_static/BUILD.gn
@@ -29,3 +29,19 @@ static_library("install_static_util") {
"//build/config/compiler:no_size_t_to_int_warning",
]
}
+
+test("install_static_unittests") {
+ output_name = "install_static_unittests"
Dirk Pranke 2016/05/31 22:11:54 output_name isn't needed here.
+ sources = [
+ "install_util_unittest.cc",
+ ]
+ include_dirs = [ "$target_gen_dir" ]
Dirk Pranke 2016/05/31 22:11:54 this shouldn't be needed, either.
+ deps = [
+ "//base",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//chrome/install_static:install_static_util",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698