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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 deps = [ | 58 deps = [ |
59 ":app_config", | 59 ":app_config", |
60 ":app_net", | 60 ":app_net", |
61 ":app_permissions", | 61 ":app_permissions", |
62 ":app_settings", | 62 ":app_settings", |
63 ":app_switches", | 63 ":app_switches", |
64 ":app_ui", | 64 ":app_ui", |
65 ":blob_channel", | 65 ":blob_channel", |
66 ":common", | 66 ":common", |
| 67 ":crash", |
67 ":renderer", | 68 ":renderer", |
68 ":session", | 69 ":session", |
69 "//base", | 70 "//base", |
70 "//blimp/common", | 71 "//blimp/common", |
71 "//blimp/common/proto", | 72 "//blimp/common/proto", |
72 "//blimp/engine:blob_channel_mojo_cpp_sources", | 73 "//blimp/engine:blob_channel_mojo_cpp_sources", |
73 "//blimp/net", | 74 "//blimp/net", |
| 75 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 76 "//components/crash/content/app:lib", |
74 "//content/public/app:both", | 77 "//content/public/app:both", |
75 "//content/public/browser", | 78 "//content/public/browser", |
76 "//content/public/common", | 79 "//content/public/common", |
77 "//content/public/renderer", | 80 "//content/public/renderer", |
78 "//content/public/utility", | 81 "//content/public/utility", |
79 "//net", | 82 "//net", |
80 ] | 83 ] |
81 } | 84 } |
82 | 85 |
83 source_set("app_config") { | 86 source_set("app_config") { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 "//ui/compositor", | 162 "//ui/compositor", |
160 "//ui/display", | 163 "//ui/display", |
161 "//ui/events", | 164 "//ui/events", |
162 "//ui/gfx", | 165 "//ui/gfx", |
163 "//ui/platform_window", | 166 "//ui/platform_window", |
164 "//ui/platform_window", | 167 "//ui/platform_window", |
165 "//ui/platform_window/stub/", | 168 "//ui/platform_window/stub/", |
166 ] | 169 ] |
167 } | 170 } |
168 | 171 |
| 172 source_set("crash") { |
| 173 sources = [ |
| 174 "app/blimp_engine_crash_keys.cc", |
| 175 "app/blimp_engine_crash_keys.h", |
| 176 "app/blimp_engine_crash_reporter_client.cc", |
| 177 "app/blimp_engine_crash_reporter_client.h", |
| 178 ] |
| 179 |
| 180 deps = [ |
| 181 "//base", |
| 182 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 183 "//components/crash/content/app:lib", |
| 184 "//components/crash/core/common", |
| 185 "//components/version_info", |
| 186 "//components/version_info:generate_version_info", |
| 187 "//content/public/common", |
| 188 ] |
| 189 } |
| 190 |
169 source_set("common") { | 191 source_set("common") { |
170 sources = [ | 192 sources = [ |
171 "common/blimp_browser_context.cc", | 193 "common/blimp_browser_context.cc", |
172 "common/blimp_browser_context.h", | 194 "common/blimp_browser_context.h", |
173 "common/blimp_content_client.cc", | 195 "common/blimp_content_client.cc", |
174 "common/blimp_content_client.h", | 196 "common/blimp_content_client.h", |
175 ] | 197 ] |
176 | 198 |
177 deps = [ | 199 deps = [ |
178 ":app_net", | 200 ":app_net", |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 _rebased_dockerfile, | 434 _rebased_dockerfile, |
413 "--startup-script", | 435 "--startup-script", |
414 _rebased_startup_script, | 436 _rebased_startup_script, |
415 "--manifest", | 437 "--manifest", |
416 _rebased_manifest, | 438 _rebased_manifest, |
417 "--output", | 439 "--output", |
418 rebase_path(_bundle), | 440 rebase_path(_bundle), |
419 ] | 441 ] |
420 } | 442 } |
421 } | 443 } |
OLD | NEW |