| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/chrome_build.gni") |
| 5 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 6 | 7 |
| 7 static_library("util") { | 8 static_library("util") { |
| 8 deps = [ | 9 deps = [ |
| 9 "//base", | 10 "//base", |
| 10 "//chrome:resources", | 11 "//chrome:resources", |
| 11 "//chrome:strings", | 12 "//chrome:strings", |
| 12 ] | 13 ] |
| 13 | 14 |
| 14 if (is_win) { | 15 if (is_win) { |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 "wmi_unittest.cc", | 255 "wmi_unittest.cc", |
| 255 "work_item_list_unittest.cc", | 256 "work_item_list_unittest.cc", |
| 256 ] | 257 ] |
| 257 | 258 |
| 258 deps = [ | 259 deps = [ |
| 259 ":strings", | 260 ":strings", |
| 260 ":util", | 261 ":util", |
| 261 "//base", | 262 "//base", |
| 262 "//base:i18n", | 263 "//base:i18n", |
| 263 "//base/test:test_support", | 264 "//base/test:test_support", |
| 264 "//chrome:chrome_version_resources", | 265 "//chrome:other_version", |
| 265 "//chrome/installer/test:alternate_version_generator_lib", | 266 "//chrome/installer/test:alternate_version_generator_lib", |
| 266 "//content/public/common", | 267 "//content/public/common", |
| 267 "//testing/gmock", | 268 "//testing/gmock", |
| 268 "//testing/gtest", | 269 "//testing/gtest", |
| 269 ] | 270 ] |
| 270 | 271 |
| 271 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 272 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
| 272 } | 273 } |
| 273 } # is_win | 274 } # is_win |
| OLD | NEW |