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_content_browser_client.cc", | 11 "blimp_content_browser_client.cc", |
12 "blimp_content_browser_client.h", | 12 "blimp_content_browser_client.h", |
13 "blimp_engine_session.cc", | 13 "blimp_engine_session.cc", |
14 "blimp_engine_session.h", | 14 "blimp_engine_session.h", |
15 "blimp_network_delegate.cc", | 15 "blimp_network_delegate.cc", |
16 "blimp_network_delegate.h", | 16 "blimp_network_delegate.h", |
17 "blimp_permission_manager.cc", | 17 "blimp_permission_manager.cc", |
18 "blimp_permission_manager.h", | 18 "blimp_permission_manager.h", |
19 "blimp_url_request_context_getter.cc", | 19 "blimp_url_request_context_getter.cc", |
20 "blimp_url_request_context_getter.h", | 20 "blimp_url_request_context_getter.h", |
| 21 "host_render_widget_message_processor.cc", |
| 22 "host_render_widget_message_processor.h", |
21 ] | 23 ] |
22 | 24 |
23 deps = [ | 25 deps = [ |
24 "//base", | 26 "//base", |
25 "//blimp/common/proto", | 27 "//blimp/common/proto", |
26 "//blimp/net:blimp_net", | 28 "//blimp/net:blimp_net", |
27 "//blimp/engine/ui", | 29 "//blimp/engine/ui", |
28 "//content", | 30 "//content", |
29 "//content/public/browser", | 31 "//content/public/browser", |
30 "//content/public/common", | 32 "//content/public/common", |
31 "//content/public/utility", | 33 "//content/public/utility", |
32 "//net", | 34 "//net", |
33 "//ui/base", | 35 "//ui/base", |
34 "//ui/base/ime", | 36 "//ui/base/ime", |
35 "//ui/resources", | 37 "//ui/resources", |
36 "//ui/wm", | 38 "//ui/wm", |
37 ] | 39 ] |
38 } | 40 } |
| 41 |
| 42 source_set("unit_tests") { |
| 43 testonly = true |
| 44 |
| 45 sources = [ |
| 46 "host_render_widget_message_processor_unittest.cc", |
| 47 ] |
| 48 |
| 49 deps = [ |
| 50 ":browser", |
| 51 "//base", |
| 52 "//base/test:run_all_unittests", |
| 53 "//base/test:test_support", |
| 54 "//blimp/common/proto", |
| 55 "//blimp/engine/common", |
| 56 "//blimp/net:blimp_net", |
| 57 "//testing/gmock", |
| 58 "//testing/gtest", |
| 59 ] |
| 60 } |
OLD | NEW |