OLD | NEW |
(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 } |
OLD | NEW |