| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "//ui/platform_window/stub/", | 116 "//ui/platform_window/stub/", |
| 117 ] | 117 ] |
| 118 } | 118 } |
| 119 | 119 |
| 120 source_set("common") { | 120 source_set("common") { |
| 121 sources = [ | 121 sources = [ |
| 122 "common/blimp_browser_context.cc", | 122 "common/blimp_browser_context.cc", |
| 123 "common/blimp_browser_context.h", | 123 "common/blimp_browser_context.h", |
| 124 "common/blimp_content_client.cc", | 124 "common/blimp_content_client.cc", |
| 125 "common/blimp_content_client.h", | 125 "common/blimp_content_client.h", |
| 126 "common/blimp_pref_store.cc", |
| 127 "common/blimp_pref_store.h", |
| 126 ] | 128 ] |
| 127 | 129 |
| 128 deps = [ | 130 deps = [ |
| 129 "//base", | 131 "//base", |
| 132 "//components/prefs", |
| 130 "//components/version_info", | 133 "//components/version_info", |
| 131 "//content/public/common", | 134 "//content/public/common", |
| 132 "//ui/base", | 135 "//ui/base", |
| 133 ] | 136 ] |
| 134 } | 137 } |
| 135 | 138 |
| 136 source_set("feature") { | 139 source_set("feature") { |
| 137 sources = [ | 140 sources = [ |
| 138 "feature/engine_render_widget_feature.cc", | 141 "feature/engine_render_widget_feature.cc", |
| 139 "feature/engine_render_widget_feature.h", | 142 "feature/engine_render_widget_feature.h", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 _rebased_dockerfile, | 314 _rebased_dockerfile, |
| 312 "--startup-script", | 315 "--startup-script", |
| 313 _rebased_startup_script, | 316 _rebased_startup_script, |
| 314 "--manifest", | 317 "--manifest", |
| 315 _rebased_manifest, | 318 _rebased_manifest, |
| 316 "--output", | 319 "--output", |
| 317 rebase_path(_bundle), | 320 rebase_path(_bundle), |
| 318 ] | 321 ] |
| 319 } | 322 } |
| 320 } | 323 } |
| OLD | NEW |