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

Unified Diff: BUILD.gn

Issue 2395743002: GN: Add default target (Closed)
Patch Set: Created 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 1765c13fdcd74b13741085d3a1b3d22902fe58fe..01b023ee62da8219f12c574ea4548012bed04f7c 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -19,6 +19,23 @@ config("libyuv_config") {
}
}
+# This target is built when no specific target is specified on the command line.
+group("default") {
+ testonly = true
+ deps = [
+ ":libyuv",
+ ]
+ if (libyuv_include_tests) {
+ deps += [
+ ":compare",
+ ":convert",
+ ":cpuid",
+ ":libyuv_unittest",
+ ":psnr",
+ ]
+ }
+}
+
static_library("libyuv") {
sources = [
# Headers
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698