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

Unified Diff: headless/BUILD.gn

Issue 1866063002: headless: Add a Maybe-type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more test. Created 4 years, 8 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 | « no previous file | headless/public/util/maybe.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/BUILD.gn
diff --git a/headless/BUILD.gn b/headless/BUILD.gn
index 0f59cabd72eb81aa55cc82f793d89a64dfd6ccd9..c035c2599f406c857a196983b28abda4eefe2e5e 100644
--- a/headless/BUILD.gn
+++ b/headless/BUILD.gn
@@ -84,6 +84,7 @@ static_library("headless_lib") {
"public/headless_browser.h",
"public/headless_export.h",
"public/headless_web_contents.h",
+ "public/util/maybe.h",
]
deps = [
@@ -110,6 +111,19 @@ group("headless_tests") {
deps = [
":headless_browsertests",
+ ":headless_unittests",
+ ]
+}
+
+test("headless_unittests") {
+ sources = [
+ "public/util/maybe_unittest.cc",
+ ]
+
+ deps = [
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//testing/gtest",
]
}
« no previous file with comments | « no previous file | headless/public/util/maybe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698