OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 assert(is_win) | 7 assert(is_win) |
8 | 8 |
9 executable("alternate_version_generator") { | 9 executable("alternate_version_generator") { |
10 testonly = true | 10 testonly = true |
(...skipping 18 matching lines...) Expand all Loading... |
29 "alternate_version_generator.h", | 29 "alternate_version_generator.h", |
30 "pe_image_resources.cc", | 30 "pe_image_resources.cc", |
31 "pe_image_resources.h", | 31 "pe_image_resources.h", |
32 "resource_loader.cc", | 32 "resource_loader.cc", |
33 "resource_loader.h", | 33 "resource_loader.h", |
34 "resource_updater.cc", | 34 "resource_updater.cc", |
35 "resource_updater.h", | 35 "resource_updater.h", |
36 ] | 36 ] |
37 deps = [ | 37 deps = [ |
38 "//base", | 38 "//base", |
| 39 "//base:base_static", |
39 "//chrome/installer/util", | 40 "//chrome/installer/util", |
40 "//chrome/common:constants", | 41 "//chrome/common:constants", |
41 ] | 42 ] |
42 } | 43 } |
43 | 44 |
44 test("upgrade_test") { | 45 test("upgrade_test") { |
45 sources = [ | 46 sources = [ |
46 "run_all_tests.cc", | 47 "run_all_tests.cc", |
47 "upgrade_test.cc", | 48 "upgrade_test.cc", |
48 ] | 49 ] |
49 deps = [ | 50 deps = [ |
50 ":alternate_version_generator_lib", | 51 ":alternate_version_generator_lib", |
51 "//base", | 52 "//base", |
52 "//base/test:test_support", | 53 "//base/test:test_support", |
53 "//chrome/common:constants", | 54 "//chrome/common:constants", |
54 "//chrome/installer/util", | 55 "//chrome/installer/util", |
55 "//testing/gtest", | 56 "//testing/gtest", |
56 ] | 57 ] |
57 data_deps = [ | 58 data_deps = [ |
58 # 'mini_installer.gyp:mini_installer', TODO(GYP) | 59 # 'mini_installer.gyp:mini_installer', TODO(GYP) |
59 ] | 60 ] |
60 } | 61 } |
OLD | NEW |