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

Unified Diff: chrome/common/BUILD.gn

Issue 559543003: Add chrome test support target to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no more gyp changes Created 6 years, 3 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/browser/ui/BUILD.gn ('k') | chrome/renderer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/BUILD.gn
diff --git a/chrome/common/BUILD.gn b/chrome/common/BUILD.gn
index 8d6e309eab6be24a5a2f3196f2c270de6fd7fc52..ed83bad437cfaa272b12b2fd56f21952e0408eaf 100644
--- a/chrome/common/BUILD.gn
+++ b/chrome/common/BUILD.gn
@@ -291,3 +291,29 @@ static_library("constants") {
]
}
}
+
+source_set("test_support") {
+ testonly = true
+ visibility = [ "//chrome/test:test_support" ]
+
+ sources = [
+ "extensions/extension_test_util.cc",
+ "extensions/extension_test_util.h",
+ ]
+
+ deps = [
+ ":common",
+ "//base",
+ "//testing/gtest",
+ ]
+
+ if (is_win || is_mac) {
+ sources += [
+ "media_galleries/picasa_test_util.cc",
+ "media_galleries/picasa_test_util.cc",
+ "media_galleries/pmp_test_util.cc",
+ "media_galleries/pmp_test_util.h",
+ ]
+ }
+
+}
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | chrome/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698