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

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

Issue 2079943002: Change RenderFrame to use InterfaceRegistry et al. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a2
Patch Set: . Created 4 years, 6 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 deps = [ 295 deps = [
296 ":blob_channel_service", 296 ":blob_channel_service",
297 "//base", 297 "//base",
298 "//blimp/common", 298 "//blimp/common",
299 "//blimp/common/proto", 299 "//blimp/common/proto",
300 "//blimp/net", 300 "//blimp/net",
301 "//cc", 301 "//cc",
302 "//components/web_cache/renderer", 302 "//components/web_cache/renderer",
303 "//content/public/common", 303 "//content/public/common",
304 "//content/public/renderer", 304 "//content/public/renderer",
305 "//services/shell/public/cpp",
305 "//skia", 306 "//skia",
306 "//third_party/libwebp", 307 "//third_party/libwebp",
307 "//ui/gfx/geometry", 308 "//ui/gfx/geometry",
308 "//ui/gl", 309 "//ui/gl",
309 ] 310 ]
310 } 311 }
311 312
312 source_set("session") { 313 source_set("session") {
313 sources = [ 314 sources = [
314 "session/blimp_engine_session.cc", 315 "session/blimp_engine_session.cc",
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 "//content/test:test_support", 652 "//content/test:test_support",
652 "//testing/gmock", 653 "//testing/gmock",
653 "//testing/gtest", 654 "//testing/gtest",
654 ] 655 ]
655 656
656 data = [ 657 data = [
657 "data/", 658 "data/",
658 "$root_out_dir/blimp_engine.pak", 659 "$root_out_dir/blimp_engine.pak",
659 ] 660 ]
660 } 661 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698