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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//chrome/process_version_rc_template.gni")
6 import("//testing/test.gni")
7
8 executable("zucchini") {
9 sources = [
10 "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
11 ]
12
13 deps = [
14 "//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.
15 ]
16
17 if (is_win) {
18 deps += [
19 ":zucchini_exe_version",
20 ]
21 }
22 }
23
24 if (is_win) {
25 process_version_rc_template("zucchini_exe_version") {
26 template_file = "zucchini_exe_version.rc.version"
27 output = "$target_gen_dir/zucchini_exe_version.rc"
28 }
29 }
30
31 test("zucchini_unittests") {
32 sources = []
33
34 deps = [
35 "//base/test:run_all_unittests",
36 "//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.
37 ]
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698