| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 static_library("content_client") { | 5 static_library("content_client") { |
| 6 testonly = true | 6 testonly = true |
| 7 sources = [ | 7 sources = [ |
| 8 "browser_main_parts.cc", | 8 "browser_main_parts.cc", |
| 9 "browser_main_parts.h", | 9 "browser_main_parts.h", |
| 10 "content_browser_client.cc", | 10 "content_browser_client.cc", |
| 11 "content_browser_client.h", | 11 "content_browser_client.h", |
| 12 "main_delegate.cc", | 12 "main_delegate.cc", |
| 13 "main_delegate.h", | 13 "main_delegate.h", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 deps = [ | 16 deps = [ |
| 17 "//base:i18n", | 17 "//base:i18n", |
| 18 "//content", | 18 "//content", |
| 19 "//content/shell:content_shell_lib", | 19 "//content/shell:content_shell_lib", |
| 20 "//net", | 20 "//net", |
| 21 "//services/navigation:lib", | 21 "//services/navigation:lib", |
| 22 "//ui/views:test_support", | 22 "//ui/views:test_support", |
| 23 "//ui/views/mus", |
| 23 ] | 24 ] |
| 24 } | 25 } |
| OLD | NEW |