Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: blimp/engine/BUILD.gn

Issue 1867653002: Initial version of Blimp BlobCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed to use BlobId and BlobData Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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:blimp_common",
164 "//blimp/common/proto",
163 "//cc", 165 "//cc",
164 "//skia", 166 "//skia",
165 "//third_party/libwebp", 167 "//third_party/libwebp",
166 "//ui/gfx/geometry", 168 "//ui/gfx/geometry",
167 "//ui/gl", 169 "//ui/gl",
168 ] 170 ]
169 } 171 }
170 172
171 source_set("session") { 173 source_set("session") {
172 sources = [ 174 sources = [
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 _rebased_dockerfile, 313 _rebased_dockerfile,
312 "--startup-script", 314 "--startup-script",
313 _rebased_startup_script, 315 _rebased_startup_script,
314 "--manifest", 316 "--manifest",
315 _rebased_manifest, 317 _rebased_manifest,
316 "--output", 318 "--output",
317 rebase_path(_bundle), 319 rebase_path(_bundle),
318 ] 320 ]
319 } 321 }
320 } 322 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698