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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 | 153 |
154 source_set("renderer") { | 154 source_set("renderer") { |
155 sources = [ | 155 sources = [ |
156 "renderer/engine_image_serialization_processor.cc", | 156 "renderer/engine_image_serialization_processor.cc", |
157 "renderer/engine_image_serialization_processor.h", | 157 "renderer/engine_image_serialization_processor.h", |
158 ] | 158 ] |
159 | 159 |
160 deps = [ | 160 deps = [ |
161 ":blob_channel_mojo", | 161 ":blob_channel_mojo", |
162 "//base", | 162 "//base", |
| 163 "//blimp/common/proto", |
163 "//cc", | 164 "//cc", |
164 "//skia", | 165 "//skia", |
165 "//third_party/libwebp", | 166 "//third_party/libwebp", |
166 "//ui/gfx/geometry", | 167 "//ui/gfx/geometry", |
167 "//ui/gl", | 168 "//ui/gl", |
168 ] | 169 ] |
169 } | 170 } |
170 | 171 |
171 source_set("session") { | 172 source_set("session") { |
172 sources = [ | 173 sources = [ |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 _rebased_dockerfile, | 312 _rebased_dockerfile, |
312 "--startup-script", | 313 "--startup-script", |
313 _rebased_startup_script, | 314 _rebased_startup_script, |
314 "--manifest", | 315 "--manifest", |
315 _rebased_manifest, | 316 _rebased_manifest, |
316 "--output", | 317 "--output", |
317 rebase_path(_bundle), | 318 rebase_path(_bundle), |
318 ] | 319 ] |
319 } | 320 } |
320 } | 321 } |
OLD | NEW |