| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 ":crash", | 86 ":crash", |
| 87 ":feature", | 87 ":feature", |
| 88 ":font_data_fetcher", | 88 ":font_data_fetcher", |
| 89 ":font_fetcher_mojo_impl", | 89 ":font_fetcher_mojo_impl", |
| 90 ":renderer", | 90 ":renderer", |
| 91 ":resources", | 91 ":resources", |
| 92 ":session", | 92 ":session", |
| 93 "//base", | 93 "//base", |
| 94 "//blimp/common", | 94 "//blimp/common", |
| 95 "//blimp/common/proto", | 95 "//blimp/common/proto", |
| 96 "//blimp/engine:blob_channel_mojo_cpp_sources", | 96 "//blimp/engine:blob_channel_mojo", |
| 97 "//blimp/net", | 97 "//blimp/net", |
| 98 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 98 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 99 "//components/crash/content/app:lib", | 99 "//components/crash/content/app:lib", |
| 100 "//content/public/app:both", | 100 "//content/public/app:both", |
| 101 "//content/public/browser", | 101 "//content/public/browser", |
| 102 "//content/public/common", | 102 "//content/public/common", |
| 103 "//content/public/common:service_names", | 103 "//content/public/common:service_names", |
| 104 "//content/public/renderer", | 104 "//content/public/renderer", |
| 105 "//content/public/utility", | 105 "//content/public/utility", |
| 106 "//device/geolocation", | 106 "//device/geolocation", |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 "renderer/blimp_remote_compositor_bridge_unittest.cc", | 581 "renderer/blimp_remote_compositor_bridge_unittest.cc", |
| 582 "renderer/blob_channel_sender_proxy_unittest.cc", | 582 "renderer/blob_channel_sender_proxy_unittest.cc", |
| 583 "renderer/frame_scheduler_unittest.cc", | 583 "renderer/frame_scheduler_unittest.cc", |
| 584 ] | 584 ] |
| 585 | 585 |
| 586 deps = [ | 586 deps = [ |
| 587 ":renderer", | 587 ":renderer", |
| 588 "//base", | 588 "//base", |
| 589 "//blimp/common", | 589 "//blimp/common", |
| 590 "//blimp/common:test_support", | 590 "//blimp/common:test_support", |
| 591 "//blimp/engine:blob_channel_mojo_cpp_sources", | 591 "//blimp/engine:blob_channel_mojo", |
| 592 "//blimp/engine:blob_channel_service", | 592 "//blimp/engine:blob_channel_service", |
| 593 "//blimp/net:test_support", | 593 "//blimp/net:test_support", |
| 594 "//blimp/test:support", | 594 "//blimp/test:support", |
| 595 "//cc/proto", | 595 "//cc/proto", |
| 596 "//mojo/public", | 596 "//mojo/public", |
| 597 "//skia", | 597 "//skia", |
| 598 "//testing/gmock", | 598 "//testing/gmock", |
| 599 "//testing/gtest", | 599 "//testing/gtest", |
| 600 ] | 600 ] |
| 601 } | 601 } |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 "//ui/events", | 818 "//ui/events", |
| 819 "//ui/gfx/geometry", | 819 "//ui/gfx/geometry", |
| 820 "//url", | 820 "//url", |
| 821 ] | 821 ] |
| 822 | 822 |
| 823 data = [ | 823 data = [ |
| 824 "//blimp/test/data/", | 824 "//blimp/test/data/", |
| 825 "$root_out_dir/blimp_engine.pak", | 825 "$root_out_dir/blimp_engine.pak", |
| 826 ] | 826 ] |
| 827 } | 827 } |
| OLD | NEW |