| 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("//build/config/chrome_build.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 static_library("util") { | 8 static_library("util") { |
| 9 deps = [ | 9 deps = [ |
| 10 "//base", | 10 "//base", |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 ":util", | 270 ":util", |
| 271 "//base", | 271 "//base", |
| 272 "//base:i18n", | 272 "//base:i18n", |
| 273 "//base/test:test_support", | 273 "//base/test:test_support", |
| 274 "//chrome:other_version", | 274 "//chrome:other_version", |
| 275 "//chrome/common", | 275 "//chrome/common", |
| 276 "//chrome/installer/setup:lib", | 276 "//chrome/installer/setup:lib", |
| 277 "//chrome/installer/test:alternate_version_generator_lib", | 277 "//chrome/installer/test:alternate_version_generator_lib", |
| 278 "//components/variations", | 278 "//components/variations", |
| 279 "//content/public/common", | 279 "//content/public/common", |
| 280 | |
| 281 # TODO(rockot): Remove this hack when we fix mojo environment deps. | |
| 282 # See http://crbug.com/501385 | |
| 283 "//mojo/environment:chromium", | |
| 284 "//testing/gmock", | 280 "//testing/gmock", |
| 285 "//testing/gtest", | 281 "//testing/gtest", |
| 286 ] | 282 ] |
| 287 | 283 |
| 288 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 284 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
| 289 } | 285 } |
| 290 } # is_win | 286 } # is_win |
| OLD | NEW |