| 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 deps = [ | 336 deps = [ |
| 337 ":blob_channel_service", | 337 ":blob_channel_service", |
| 338 "//base", | 338 "//base", |
| 339 "//blimp/common", | 339 "//blimp/common", |
| 340 "//blimp/common/proto", | 340 "//blimp/common/proto", |
| 341 "//blimp/net", | 341 "//blimp/net", |
| 342 "//cc", | 342 "//cc", |
| 343 "//components/web_cache/renderer", | 343 "//components/web_cache/renderer", |
| 344 "//content/public/common", | 344 "//content/public/common", |
| 345 "//content/public/renderer", | 345 "//content/public/renderer", |
| 346 "//services/shell/public/cpp", | 346 "//services/service_manager/public/cpp", |
| 347 "//skia", | 347 "//skia", |
| 348 "//third_party/libwebp", | 348 "//third_party/libwebp", |
| 349 "//ui/gfx/geometry", | 349 "//ui/gfx/geometry", |
| 350 "//ui/gl", | 350 "//ui/gl", |
| 351 ] | 351 ] |
| 352 } | 352 } |
| 353 | 353 |
| 354 source_set("session") { | 354 source_set("session") { |
| 355 sources = [ | 355 sources = [ |
| 356 "session/blimp_engine_session.cc", | 356 "session/blimp_engine_session.cc", |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 "//content/test:test_support", | 795 "//content/test:test_support", |
| 796 "//testing/gmock", | 796 "//testing/gmock", |
| 797 "//testing/gtest", | 797 "//testing/gtest", |
| 798 ] | 798 ] |
| 799 | 799 |
| 800 data = [ | 800 data = [ |
| 801 "//blimp/test/data/", | 801 "//blimp/test/data/", |
| 802 "$root_out_dir/blimp_engine.pak", | 802 "$root_out_dir/blimp_engine.pak", |
| 803 ] | 803 ] |
| 804 } | 804 } |
| OLD | NEW |