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

Unified Diff: chrome/app/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 | « ash/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/BUILD.gn
diff --git a/chrome/app/BUILD.gn b/chrome/app/BUILD.gn
index 9a62322ba1279e9dfe489cd8633097cbc0fb58ee..d4b35e287d6c09336e5c553932feeb77e82ae824 100644
--- a/chrome/app/BUILD.gn
+++ b/chrome/app/BUILD.gn
@@ -221,3 +221,35 @@ grit("chromium_strings") {
"chromium_strings_zh-TW.pak",
]
}
+
+source_set("test_support") {
+ testonly = true
+ visibility = [ "//chrome/test:test_support" ]
+
+ sources = [
+ "chrome_main_delegate.cc",
+ "chrome_main_delegate.h",
+ "close_handle_hook_win.cc",
+ "close_handle_hook_win.h",
+ ]
+
+ deps = [
+ "//base",
+ "//chrome/browser",
+ "//chrome/common",
+ "//chrome/plugin",
+ "//chrome/renderer",
+ "//chrome/utility",
+ "//content/public/app:both",
+ "//content/public/common",
+ "//ui/base",
+ ]
+
+ if (is_mac) {
+ sources += [
+ "chrome_breakpad_client.cc",
+ "chrome_breakpad_client_mac.mm",
+ "chrome_main_mac.mm",
+ ]
+ }
+}
« no previous file with comments | « ash/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698