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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 # Technically, this directory should not depend on files from src/chrome, but | 8 # Technically, this directory should not depend on files from src/chrome, but |
9 # that's where the VERSION file is. This should probably all be moved to | 9 # that's where the VERSION file is. This should probably all be moved to |
10 # src/build. | 10 # src/build. |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
317 | 317 |
318 deps = [ | 318 deps = [ |
319 ":app_shell_lib", | 319 ":app_shell_lib", |
320 "//base", | 320 "//base", |
321 "//base/test:test_support", | 321 "//base/test:test_support", |
322 "//components/version_info", | 322 "//components/version_info", |
323 "//content/shell:content_shell_lib", | 323 "//content/shell:content_shell_lib", |
324 "//content/test:test_support", | 324 "//content/test:test_support", |
325 "//extensions:test_support", | 325 "//extensions:test_support", |
326 "//extensions/browser", | 326 "//extensions/browser", |
327 "//extensions/browser/app_window", | |
Devlin
2016/09/14 21:06:52
doesn't extensions/browser include app_window?
Rahul Chaturvedi
2016/09/14 21:40:17
Ah, didn't remove this after I made the deps publi
| |
327 "//extensions/common", | 328 "//extensions/common", |
328 ] | 329 ] |
329 | 330 |
330 if (use_aura) { | 331 if (use_aura) { |
331 deps += [ "//ui/aura" ] | 332 deps += [ "//ui/aura" ] |
332 } | 333 } |
333 } | 334 } |
334 | 335 |
335 source_set("unit_tests") { | 336 source_set("unit_tests") { |
336 testonly = true | 337 testonly = true |
337 sources = [] | 338 sources = [] |
338 | 339 |
339 deps = [ | 340 deps = [ |
340 ":app_shell_lib", | 341 ":app_shell_lib", |
341 "//base", | 342 "//base", |
342 "//base/test:test_support", | 343 "//base/test:test_support", |
343 "//extensions/browser", | 344 "//extensions/browser", |
344 ] | 345 ] |
345 | 346 |
346 if (is_chromeos) { | 347 if (is_chromeos) { |
347 deps += [ | 348 deps += [ |
348 "//chromeos:test_support", | 349 "//chromeos:test_support", |
349 "//components/keyed_service/content", | 350 "//components/keyed_service/content", |
350 ] | 351 ] |
351 } | 352 } |
352 } | 353 } |
OLD | NEW |