| 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/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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 deps = [ | 297 deps = [ |
| 298 ":blob_channel_service", | 298 ":blob_channel_service", |
| 299 "//base", | 299 "//base", |
| 300 "//blimp/common", | 300 "//blimp/common", |
| 301 "//blimp/common/proto", | 301 "//blimp/common/proto", |
| 302 "//blimp/net", | 302 "//blimp/net", |
| 303 "//cc", | 303 "//cc", |
| 304 "//components/web_cache/renderer", | 304 "//components/web_cache/renderer", |
| 305 "//content/public/common", | 305 "//content/public/common", |
| 306 "//content/public/renderer", | 306 "//content/public/renderer", |
| 307 "//services/shell/public/cpp", |
| 307 "//skia", | 308 "//skia", |
| 308 "//third_party/libwebp", | 309 "//third_party/libwebp", |
| 309 "//ui/gfx/geometry", | 310 "//ui/gfx/geometry", |
| 310 "//ui/gl", | 311 "//ui/gl", |
| 311 ] | 312 ] |
| 312 } | 313 } |
| 313 | 314 |
| 314 source_set("session") { | 315 source_set("session") { |
| 315 sources = [ | 316 sources = [ |
| 316 "session/blimp_engine_session.cc", | 317 "session/blimp_engine_session.cc", |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 "//content/test:test_support", | 656 "//content/test:test_support", |
| 656 "//testing/gmock", | 657 "//testing/gmock", |
| 657 "//testing/gtest", | 658 "//testing/gtest", |
| 658 ] | 659 ] |
| 659 | 660 |
| 660 data = [ | 661 data = [ |
| 661 "data/", | 662 "data/", |
| 662 "$root_out_dir/blimp_engine.pak", | 663 "$root_out_dir/blimp_engine.pak", |
| 663 ] | 664 ] |
| 664 } | 665 } |
| OLD | NEW |