OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("browser") { | 5 source_set("browser") { |
6 sources = [ | 6 sources = [ |
7 "blimp_browser_context.cc", | 7 "blimp_browser_context.cc", |
8 "blimp_browser_context.h", | 8 "blimp_browser_context.h", |
9 "blimp_browser_main_parts.cc", | 9 "blimp_browser_main_parts.cc", |
10 "blimp_browser_main_parts.h", | 10 "blimp_browser_main_parts.h", |
| 11 "blimp_client_session.cc", |
| 12 "blimp_client_session.h", |
| 13 "blimp_client_session_manager.cc", |
| 14 "blimp_client_session_manager.h", |
| 15 "blimp_client_session_manager_delegate.h", |
11 "blimp_content_browser_client.cc", | 16 "blimp_content_browser_client.cc", |
12 "blimp_content_browser_client.h", | 17 "blimp_content_browser_client.h", |
| 18 "blimp_engine_session.cc", |
| 19 "blimp_engine_session.h", |
13 "blimp_network_delegate.cc", | 20 "blimp_network_delegate.cc", |
14 "blimp_network_delegate.h", | 21 "blimp_network_delegate.h", |
15 "blimp_permission_manager.cc", | 22 "blimp_permission_manager.cc", |
16 "blimp_permission_manager.h", | 23 "blimp_permission_manager.h", |
17 "blimp_url_request_context_getter.cc", | 24 "blimp_url_request_context_getter.cc", |
18 "blimp_url_request_context_getter.h", | 25 "blimp_url_request_context_getter.h", |
19 "blimp_window.cc", | |
20 "blimp_window.h", | |
21 ] | 26 ] |
22 | 27 |
23 deps = [ | 28 deps = [ |
24 "//base", | 29 "//base", |
25 "//blimp/engine/ui", | 30 "//blimp/engine/ui", |
26 "//content", | 31 "//content", |
27 "//content/public/browser", | 32 "//content/public/browser", |
28 "//content/public/common", | 33 "//content/public/common", |
29 "//content/public/utility", | 34 "//content/public/utility", |
30 "//net", | 35 "//net", |
31 "//ui/base", | 36 "//ui/base", |
32 "//ui/resources", | 37 "//ui/resources", |
33 ] | 38 ] |
34 } | 39 } |
OLD | NEW |