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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "app/blimp_browser_main_parts.cc", | 50 "app/blimp_browser_main_parts.cc", |
51 "app/blimp_browser_main_parts.h", | 51 "app/blimp_browser_main_parts.h", |
52 "app/blimp_content_browser_client.cc", | 52 "app/blimp_content_browser_client.cc", |
53 "app/blimp_content_browser_client.h", | 53 "app/blimp_content_browser_client.h", |
54 "app/blimp_content_main_delegate.cc", | 54 "app/blimp_content_main_delegate.cc", |
55 "app/blimp_content_main_delegate.h", | 55 "app/blimp_content_main_delegate.h", |
56 "app/blimp_content_renderer_client.cc", | 56 "app/blimp_content_renderer_client.cc", |
57 "app/blimp_content_renderer_client.h", | 57 "app/blimp_content_renderer_client.h", |
58 "app/blimp_engine_config.cc", | 58 "app/blimp_engine_config.cc", |
59 "app/blimp_engine_config.h", | 59 "app/blimp_engine_config.h", |
| 60 "app/blimp_metrics_service_client.cc", |
| 61 "app/blimp_metrics_service_client.h", |
60 "app/blimp_network_delegate.cc", | 62 "app/blimp_network_delegate.cc", |
61 "app/blimp_network_delegate.h", | 63 "app/blimp_network_delegate.h", |
62 "app/blimp_permission_manager.cc", | 64 "app/blimp_permission_manager.cc", |
63 "app/blimp_permission_manager.h", | 65 "app/blimp_permission_manager.h", |
64 "app/blimp_system_url_request_context_getter.cc", | 66 "app/blimp_system_url_request_context_getter.cc", |
65 "app/blimp_system_url_request_context_getter.h", | 67 "app/blimp_system_url_request_context_getter.h", |
66 "app/blimp_url_request_context_getter.cc", | 68 "app/blimp_url_request_context_getter.cc", |
67 "app/blimp_url_request_context_getter.h", | 69 "app/blimp_url_request_context_getter.h", |
68 "app/engine_settings.h", | 70 "app/engine_settings.h", |
69 "app/settings_manager.cc", | 71 "app/settings_manager.cc", |
70 "app/settings_manager.h", | 72 "app/settings_manager.h", |
71 "app/switches.cc", | 73 "app/switches.cc", |
72 "app/switches.h", | 74 "app/switches.h", |
73 ] | 75 ] |
74 | 76 |
75 deps = [ | 77 deps = [ |
76 ":app_ui", | 78 ":app_ui", |
77 ":blob_channel", | 79 ":blob_channel", |
78 ":common", | 80 ":common", |
79 ":renderer", | 81 ":renderer", |
80 ":session", | 82 ":session", |
81 "//base", | 83 "//base", |
82 "//blimp/common/proto", | 84 "//blimp/common/proto", |
| 85 "//components/metrics", |
| 86 "//components/metrics:gpu", |
| 87 "//components/metrics:net", |
| 88 "//components/metrics:profiler", |
| 89 "//components/metrics:ui", |
| 90 "//components/prefs", |
83 "//components/web_cache/renderer", | 91 "//components/web_cache/renderer", |
84 "//content", | 92 "//content", |
85 "//content/public/app:both", | 93 "//content/public/app:both", |
86 "//content/public/browser", | 94 "//content/public/browser", |
87 "//content/public/common", | 95 "//content/public/common", |
88 "//content/public/renderer", | 96 "//content/public/renderer", |
89 "//content/public/utility", | 97 "//content/public/utility", |
90 ] | 98 ] |
91 } | 99 } |
92 | 100 |
(...skipping 26 matching lines...) Expand all Loading... |
119 source_set("common") { | 127 source_set("common") { |
120 sources = [ | 128 sources = [ |
121 "common/blimp_browser_context.cc", | 129 "common/blimp_browser_context.cc", |
122 "common/blimp_browser_context.h", | 130 "common/blimp_browser_context.h", |
123 "common/blimp_content_client.cc", | 131 "common/blimp_content_client.cc", |
124 "common/blimp_content_client.h", | 132 "common/blimp_content_client.h", |
125 ] | 133 ] |
126 | 134 |
127 deps = [ | 135 deps = [ |
128 "//base", | 136 "//base", |
| 137 "//components/metrics", |
| 138 "//components/pref_registry", |
| 139 "//components/prefs", |
129 "//components/version_info", | 140 "//components/version_info", |
130 "//content/public/common", | 141 "//content/public/common", |
131 "//ui/base", | 142 "//ui/base", |
132 ] | 143 ] |
133 } | 144 } |
134 | 145 |
135 source_set("feature") { | 146 source_set("feature") { |
136 sources = [ | 147 sources = [ |
137 "feature/engine_render_widget_feature.cc", | 148 "feature/engine_render_widget_feature.cc", |
138 "feature/engine_render_widget_feature.h", | 149 "feature/engine_render_widget_feature.h", |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 _rebased_dockerfile, | 323 _rebased_dockerfile, |
313 "--startup-script", | 324 "--startup-script", |
314 _rebased_startup_script, | 325 _rebased_startup_script, |
315 "--manifest", | 326 "--manifest", |
316 _rebased_manifest, | 327 _rebased_manifest, |
317 "--output", | 328 "--output", |
318 rebase_path(_bundle), | 329 rebase_path(_bundle), |
319 ] | 330 ] |
320 } | 331 } |
321 } | 332 } |
OLD | NEW |