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

Side by Side Diff: chrome/installer/zucchini/BUILD.gn

Issue 2922273002: Introduce Zucchini in chromium (Closed)
Patch Set: add Component in OWNERS file 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",
11 ]
12
13 deps = []
14
15 if (is_win) {
16 deps += [ ":zucchini_exe_version" ]
17 }
18 }
19
20 if (is_win) {
21 process_version_rc_template("zucchini_exe_version") {
22 template_file = "zucchini_exe_version.rc.version"
23 output = "$target_gen_dir/zucchini_exe_version.rc"
24 }
25 }
26
27 test("zucchini_unittests") {
28 sources = []
29
30 deps = [
31 "//base/test:run_all_unittests",
32 ]
33 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | chrome/installer/zucchini/OWNERS » ('j') | chrome/installer/zucchini/OWNERS » ('J')

Powered by Google App Engine
This is Rietveld 408576698