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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 "//components/version_info", | 121 "//components/version_info", |
122 "//content/public/common", | 122 "//content/public/common", |
123 "//ui/base", | 123 "//ui/base", |
124 ] | 124 ] |
125 } | 125 } |
126 | 126 |
127 source_set("feature") { | 127 source_set("feature") { |
128 sources = [ | 128 sources = [ |
129 "feature/engine_render_widget_feature.cc", | 129 "feature/engine_render_widget_feature.cc", |
130 "feature/engine_render_widget_feature.h", | 130 "feature/engine_render_widget_feature.h", |
| 131 "feature/engine_settings_feature.cc", |
| 132 "feature/engine_settings_feature.h", |
131 ] | 133 ] |
132 | 134 |
133 deps = [ | 135 deps = [ |
134 "//base", | 136 "//base", |
135 "//blimp/common/proto", | 137 "//blimp/common/proto", |
136 "//ui/base", | 138 "//ui/base", |
137 "//ui/base/ime", | 139 "//ui/base/ime", |
138 "//ui/resources", | 140 "//ui/resources", |
139 "//ui/wm", | 141 "//ui/wm", |
140 ] | 142 ] |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 _rebased_dockerfile, | 266 _rebased_dockerfile, |
265 "--startup-script", | 267 "--startup-script", |
266 _rebased_startup_script, | 268 _rebased_startup_script, |
267 "--manifest", | 269 "--manifest", |
268 _rebased_manifest, | 270 _rebased_manifest, |
269 "--output", | 271 "--output", |
270 rebase_path(_bundle), | 272 rebase_path(_bundle), |
271 ] | 273 ] |
272 } | 274 } |
273 } | 275 } |
OLD | NEW |