| 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("//build/config/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/process_version_rc_template.gni") | 8 import("//chrome/process_version_rc_template.gni") |
| 9 import("//chrome/test/mini_installer/mini_installer_test.gni") | 9 import("//chrome/test/mini_installer/mini_installer_test.gni") |
| 10 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 template_file = "mini_installer_exe_version.rc.version" | 56 template_file = "mini_installer_exe_version.rc.version" |
| 57 output = "$root_out_dir/mini_installer_exe_version.rc" | 57 output = "$root_out_dir/mini_installer_exe_version.rc" |
| 58 } | 58 } |
| 59 | 59 |
| 60 source_set("unit_tests") { | 60 source_set("unit_tests") { |
| 61 testonly = true | 61 testonly = true |
| 62 | 62 |
| 63 sources = [ | 63 sources = [ |
| 64 "configuration_test.cc", | 64 "configuration_test.cc", |
| 65 "decompress_test.cc", | 65 "decompress_test.cc", |
| 66 "mini_installer_unittest.cc", |
| 66 "mini_string_test.cc", | 67 "mini_string_test.cc", |
| 67 ] | 68 ] |
| 68 | 69 |
| 69 public_deps = [ | 70 public_deps = [ |
| 70 ":lib", | 71 ":lib", |
| 71 ] | 72 ] |
| 72 deps = [ | 73 deps = [ |
| 73 "//base", | 74 "//base", |
| 74 "//base/test:test_support", | 75 "//base/test:test_support", |
| 75 "//testing/gtest", | 76 "//testing/gtest", |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 args = [ | 293 args = [ |
| 293 "--out", | 294 "--out", |
| 294 "$target_name.exe", | 295 "$target_name.exe", |
| 295 ] | 296 ] |
| 296 deps = [ | 297 deps = [ |
| 297 ":mini_installer", | 298 ":mini_installer", |
| 298 "//chrome/installer/test:alternate_version_generator", | 299 "//chrome/installer/test:alternate_version_generator", |
| 299 ] | 300 ] |
| 300 } | 301 } |
| 301 } | 302 } |
| OLD | NEW |