| 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("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "app/blimp_permission_manager.h", | 62 "app/blimp_permission_manager.h", |
| 63 "app/blimp_url_request_context_getter.cc", | 63 "app/blimp_url_request_context_getter.cc", |
| 64 "app/blimp_url_request_context_getter.h", | 64 "app/blimp_url_request_context_getter.h", |
| 65 "app/switches.cc", | 65 "app/switches.cc", |
| 66 "app/switches.h", | 66 "app/switches.h", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 deps = [ | 69 deps = [ |
| 70 ":app_ui", | 70 ":app_ui", |
| 71 ":common", | 71 ":common", |
| 72 ":crash", | |
| 73 ":session", | 72 ":session", |
| 74 "//base", | 73 "//base", |
| 75 "//blimp/common/proto", | 74 "//blimp/common/proto", |
| 76 "//components/web_cache/renderer", | 75 "//components/web_cache/renderer", |
| 77 "//content", | 76 "//content", |
| 78 "//content/public/app:both", | 77 "//content/public/app:both", |
| 79 "//content/public/browser", | 78 "//content/public/browser", |
| 80 "//content/public/common", | 79 "//content/public/common", |
| 81 "//content/public/renderer", | 80 "//content/public/renderer", |
| 82 "//content/public/utility", | 81 "//content/public/utility", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 102 "//ui/aura", | 101 "//ui/aura", |
| 103 "//ui/compositor", | 102 "//ui/compositor", |
| 104 "//ui/events", | 103 "//ui/events", |
| 105 "//ui/gfx", | 104 "//ui/gfx", |
| 106 "//ui/platform_window", | 105 "//ui/platform_window", |
| 107 "//ui/platform_window", | 106 "//ui/platform_window", |
| 108 "//ui/platform_window/stub/", | 107 "//ui/platform_window/stub/", |
| 109 ] | 108 ] |
| 110 } | 109 } |
| 111 | 110 |
| 112 source_set("crash") { | |
| 113 sources = [ | |
| 114 "app/blimp_engine_crash_keys.cc", | |
| 115 "app/blimp_engine_crash_keys.h", | |
| 116 "app/blimp_engine_crash_reporter_client.cc", | |
| 117 "app/blimp_engine_crash_reporter_client.h", | |
| 118 ] | |
| 119 | |
| 120 deps = [ | |
| 121 "//base", | |
| 122 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | |
| 123 "//components/crash/core/common", | |
| 124 "//components/version_info", | |
| 125 "//content/public/common", | |
| 126 ] | |
| 127 } | |
| 128 | |
| 129 source_set("common") { | 111 source_set("common") { |
| 130 sources = [ | 112 sources = [ |
| 131 "common/blimp_browser_context.cc", | 113 "common/blimp_browser_context.cc", |
| 132 "common/blimp_browser_context.h", | 114 "common/blimp_browser_context.h", |
| 133 "common/blimp_content_client.cc", | 115 "common/blimp_content_client.cc", |
| 134 "common/blimp_content_client.h", | 116 "common/blimp_content_client.h", |
| 135 ] | 117 ] |
| 136 | 118 |
| 137 deps = [ | 119 deps = [ |
| 138 "//base", | 120 "//base", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 _rebased_dockerfile, | 264 _rebased_dockerfile, |
| 283 "--startup-script", | 265 "--startup-script", |
| 284 _rebased_startup_script, | 266 _rebased_startup_script, |
| 285 "--manifest", | 267 "--manifest", |
| 286 _rebased_manifest, | 268 _rebased_manifest, |
| 287 "--output", | 269 "--output", |
| 288 rebase_path(_bundle), | 270 rebase_path(_bundle), |
| 289 ] | 271 ] |
| 290 } | 272 } |
| 291 } | 273 } |
| OLD | NEW |