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

Unified Diff: chrome/installer/zucchini/BUILD.gn

Issue 2922273002: Introduce Zucchini in chromium (Closed)
Patch Set: Add zucchini_exe_version dependency in zucchini Created 3 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
Index: chrome/installer/zucchini/BUILD.gn
diff --git a/chrome/installer/zucchini/BUILD.gn b/chrome/installer/zucchini/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..93372f9b1eb076b479f07dfdf9a5933afa8e2e92
--- /dev/null
+++ b/chrome/installer/zucchini/BUILD.gn
@@ -0,0 +1,38 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//chrome/process_version_rc_template.gni")
+import("//testing/test.gni")
+
+executable("zucchini") {
+ sources = [
+ "zucchini_main.cc",
grt (UTC plus 2) 2017/06/09 08:22:53 i see that //chrome/installer/setup:setup lists th
etiennep 2017/06/09 22:43:05 Touching .rc.version effectively causes ninja to r
+ ]
+
+ deps = [
+ "//base",
grt (UTC plus 2) 2017/06/09 08:22:53 this doesn't yet depend on base. please remove thi
etiennep 2017/06/09 22:43:05 Done.
+ ]
+
+ if (is_win) {
+ deps += [
+ ":zucchini_exe_version",
+ ]
+ }
+}
+
+if (is_win) {
+ process_version_rc_template("zucchini_exe_version") {
+ template_file = "zucchini_exe_version.rc.version"
+ output = "$target_gen_dir/zucchini_exe_version.rc"
+ }
+}
+
+test("zucchini_unittests") {
+ sources = []
+
+ deps = [
+ "//base/test:run_all_unittests",
+ "//testing/gtest",
grt (UTC plus 2) 2017/06/09 08:22:53 similar comment -- this doesn't yet directly depen
etiennep 2017/06/09 22:43:05 Done.
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698