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

Unified Diff: BUILD.gn

Issue 2082683003: Flip Google Chrome Win builder to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make target win-only Created 4 years, 6 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 | tools/mb/mb_config.pyl » ('j') | 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 84e1a54b64b9e2eee51a62685f796110a917424d..4749551ce75f01a14a8b7fe6a9840041f9550e7a 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -95,6 +95,29 @@ group("chromium_builder_tests") {
deps = []
}
+# TODO(GYP_GONE): Figure out if we really need this target or if there's
+# some better way to specify things.
+if (is_win) {
+ group("chrome_official_builder_no_unittests") {
+ deps = [
+ "//chrome/installer/gcapi",
+ "//chrome/installer/mini_installer",
+ "//courgette",
+
+ # TODO(GYP): crbug.com/621575 do we need to port this?
+ # "//chrome:pack_policy_templates",
+
+ "//remoting/webapp",
+ ]
+ if (target_cpu == "x86") {
+ deps += [ "//courgette(//build/toolchain/win:x64)" ]
+ }
+ if (is_chrome_branded) {
+ deps += [ "//remoting/host:remoting_host_installation" ]
+ }
+ }
+}
+
if (is_chromeos) {
group("chromiumos_preflight") {
testonly = true
« no previous file with comments | « no previous file | tools/mb/mb_config.pyl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698