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

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

Issue 1062743006: Add installer_util_unittests to the GN windows build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wintests3
Patch Set: Fixes Created 5 years, 7 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 2015 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("//testing/test.gni")
6
7 assert(is_win)
8
9 executable("alternate_version_generator") {
10 testonly = true
11 sources = [
12 "alternate_version_generator_main.cc",
13 ]
14
15 deps = [
16 ":alternate_version_generator_lib",
17 "//base",
18 "//base/test:test_support",
19 "//chrome/common:constants",
20 "//chrome/installer/util",
21 "//testing/gtest",
22 ]
23 }
24
25 source_set("alternate_version_generator_lib") {
26 testonly = true
27 sources = [
28 "alternate_version_generator.cc",
29 "alternate_version_generator.h",
30 "pe_image_resources.cc",
31 "pe_image_resources.h",
32 "resource_loader.cc",
33 "resource_loader.h",
34 "resource_updater.cc",
35 "resource_updater.h",
36 ]
37 deps = [
38 "//base",
39 "//chrome/installer/util",
40 "//chrome/common:constants",
41 ]
42 }
43
44 test("upgrade_test") {
45 sources = [
46 "run_all_tests.cc",
47 "upgrade_test.cc",
48 ]
49 deps = [
50 ":alternate_version_generator_lib",
51 "//base",
52 "//base/test:test_support",
53 "//chrome/common:constants",
54 "//chrome/installer/util",
55 "//testing/gtest",
56 ]
57 data_deps = [
58 # 'mini_installer.gyp:mini_installer', TODO(GYP)
59 ]
60 }
OLDNEW
« no previous file with comments | « chrome/installer/setup/setup_unittests.rc ('k') | chrome/installer/test/alternate_version_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698