| 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", |
| 72 ":session", | 73 ":session", |
| 73 "//base", | 74 "//base", |
| 74 "//blimp/common/proto", | 75 "//blimp/common/proto", |
| 75 "//components/web_cache/renderer", | 76 "//components/web_cache/renderer", |
| 76 "//content", | 77 "//content", |
| 77 "//content/public/app:both", | 78 "//content/public/app:both", |
| 78 "//content/public/browser", | 79 "//content/public/browser", |
| 79 "//content/public/common", | 80 "//content/public/common", |
| 80 "//content/public/renderer", | 81 "//content/public/renderer", |
| 81 "//content/public/utility", | 82 "//content/public/utility", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 101 "//ui/aura", | 102 "//ui/aura", |
| 102 "//ui/compositor", | 103 "//ui/compositor", |
| 103 "//ui/events", | 104 "//ui/events", |
| 104 "//ui/gfx", | 105 "//ui/gfx", |
| 105 "//ui/platform_window", | 106 "//ui/platform_window", |
| 106 "//ui/platform_window", | 107 "//ui/platform_window", |
| 107 "//ui/platform_window/stub/", | 108 "//ui/platform_window/stub/", |
| 108 ] | 109 ] |
| 109 } | 110 } |
| 110 | 111 |
| 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 |
| 111 source_set("common") { | 129 source_set("common") { |
| 112 sources = [ | 130 sources = [ |
| 113 "common/blimp_browser_context.cc", | 131 "common/blimp_browser_context.cc", |
| 114 "common/blimp_browser_context.h", | 132 "common/blimp_browser_context.h", |
| 115 "common/blimp_content_client.cc", | 133 "common/blimp_content_client.cc", |
| 116 "common/blimp_content_client.h", | 134 "common/blimp_content_client.h", |
| 117 ] | 135 ] |
| 118 | 136 |
| 119 deps = [ | 137 deps = [ |
| 120 "//base", | 138 "//base", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 _rebased_dockerfile, | 282 _rebased_dockerfile, |
| 265 "--startup-script", | 283 "--startup-script", |
| 266 _rebased_startup_script, | 284 _rebased_startup_script, |
| 267 "--manifest", | 285 "--manifest", |
| 268 _rebased_manifest, | 286 _rebased_manifest, |
| 269 "--output", | 287 "--output", |
| 270 rebase_path(_bundle), | 288 rebase_path(_bundle), |
| 271 ] | 289 ] |
| 272 } | 290 } |
| 273 } | 291 } |
| OLD | NEW |