| 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 import("//build/util/process_version.gni") | 7 import("//build/util/process_version.gni") |
| 8 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 source_set("app_shell_lib") { | 27 source_set("app_shell_lib") { |
| 28 # TODO(jamescook): investigate and get rid of test dependencies. This library | 28 # TODO(jamescook): investigate and get rid of test dependencies. This library |
| 29 # is testonly because it depends on testonly libraries, namely | 29 # is testonly because it depends on testonly libraries, namely |
| 30 # //content/shell:content_shell_lib. See http://crbug.com/438283 | 30 # //content/shell:content_shell_lib. See http://crbug.com/438283 |
| 31 testonly = true | 31 testonly = true |
| 32 deps = [ | 32 deps = [ |
| 33 ":resources", | 33 ":resources", |
| 34 ":version_header", | 34 ":version_header", |
| 35 "//apps", |
| 35 "//base", | 36 "//base", |
| 36 "//components/guest_view/browser", | 37 "//components/guest_view/browser", |
| 37 "//components/guest_view/common", | 38 "//components/guest_view/common", |
| 38 "//components/guest_view/renderer", | 39 "//components/guest_view/renderer", |
| 39 "//components/pref_registry", | 40 "//components/pref_registry", |
| 40 "//components/prefs", | 41 "//components/prefs", |
| 41 "//components/update_client", | 42 "//components/update_client", |
| 42 "//components/user_prefs", | 43 "//components/user_prefs", |
| 43 "//components/web_cache/renderer", | 44 "//components/web_cache/renderer", |
| 44 "//content", | 45 "//content", |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "//extensions/browser", | 448 "//extensions/browser", |
| 448 ] | 449 ] |
| 449 | 450 |
| 450 if (is_chromeos) { | 451 if (is_chromeos) { |
| 451 deps += [ | 452 deps += [ |
| 452 "//chromeos:test_support", | 453 "//chromeos:test_support", |
| 453 "//components/keyed_service/content", | 454 "//components/keyed_service/content", |
| 454 ] | 455 ] |
| 455 } | 456 } |
| 456 } | 457 } |
| OLD | NEW |