| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "app/settings_manager.cc", | 67 "app/settings_manager.cc", |
| 68 "app/settings_manager.h", | 68 "app/settings_manager.h", |
| 69 "app/switches.cc", | 69 "app/switches.cc", |
| 70 "app/switches.h", | 70 "app/switches.h", |
| 71 ] | 71 ] |
| 72 | 72 |
| 73 deps = [ | 73 deps = [ |
| 74 ":app_ui", | 74 ":app_ui", |
| 75 ":blob_channel", | 75 ":blob_channel", |
| 76 ":common", | 76 ":common", |
| 77 ":crash", |
| 77 ":renderer", | 78 ":renderer", |
| 78 ":session", | 79 ":session", |
| 79 "//base", | 80 "//base", |
| 80 "//blimp/common/proto", | 81 "//blimp/common/proto", |
| 81 "//components/web_cache/renderer", | 82 "//components/web_cache/renderer", |
| 82 "//content", | 83 "//content", |
| 83 "//content/public/app:both", | 84 "//content/public/app:both", |
| 84 "//content/public/browser", | 85 "//content/public/browser", |
| 85 "//content/public/common", | 86 "//content/public/common", |
| 86 "//content/public/renderer", | 87 "//content/public/renderer", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 107 "//ui/aura", | 108 "//ui/aura", |
| 108 "//ui/compositor", | 109 "//ui/compositor", |
| 109 "//ui/events", | 110 "//ui/events", |
| 110 "//ui/gfx", | 111 "//ui/gfx", |
| 111 "//ui/platform_window", | 112 "//ui/platform_window", |
| 112 "//ui/platform_window", | 113 "//ui/platform_window", |
| 113 "//ui/platform_window/stub/", | 114 "//ui/platform_window/stub/", |
| 114 ] | 115 ] |
| 115 } | 116 } |
| 116 | 117 |
| 118 source_set("crash") { |
| 119 sources = [ |
| 120 "app/blimp_engine_crash_keys.cc", |
| 121 "app/blimp_engine_crash_keys.h", |
| 122 "app/blimp_engine_crash_reporter_client.cc", |
| 123 "app/blimp_engine_crash_reporter_client.h", |
| 124 ] |
| 125 |
| 126 deps = [ |
| 127 "//base", |
| 128 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 129 "//components/crash/core/common", |
| 130 "//components/version_info", |
| 131 "//content/public/common", |
| 132 ] |
| 133 } |
| 134 |
| 117 source_set("common") { | 135 source_set("common") { |
| 118 sources = [ | 136 sources = [ |
| 119 "common/blimp_browser_context.cc", | 137 "common/blimp_browser_context.cc", |
| 120 "common/blimp_browser_context.h", | 138 "common/blimp_browser_context.h", |
| 121 "common/blimp_content_client.cc", | 139 "common/blimp_content_client.cc", |
| 122 "common/blimp_content_client.h", | 140 "common/blimp_content_client.h", |
| 123 ] | 141 ] |
| 124 | 142 |
| 125 deps = [ | 143 deps = [ |
| 126 "//base", | 144 "//base", |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 _rebased_dockerfile, | 330 _rebased_dockerfile, |
| 313 "--startup-script", | 331 "--startup-script", |
| 314 _rebased_startup_script, | 332 _rebased_startup_script, |
| 315 "--manifest", | 333 "--manifest", |
| 316 _rebased_manifest, | 334 _rebased_manifest, |
| 317 "--output", | 335 "--output", |
| 318 rebase_path(_bundle), | 336 rebase_path(_bundle), |
| 319 ] | 337 ] |
| 320 } | 338 } |
| 321 } | 339 } |
| OLD | NEW |