| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 64 ":app_config", | 64 ":app_config", |
| 65 ":app_net", | 65 ":app_net", |
| 66 ":app_permissions", | 66 ":app_permissions", |
| 67 ":app_settings", | 67 ":app_settings", |
| 68 ":app_ui", | 68 ":app_ui", |
| 69 ":blob_channel_service", | 69 ":blob_channel_service", |
| 70 ":common", | 70 ":common", |
| 71 ":crash", | 71 ":crash", |
| 72 ":feature", |
| 72 ":renderer", | 73 ":renderer", |
| 73 ":session", | 74 ":session", |
| 74 "//base", | 75 "//base", |
| 75 "//blimp/common", | 76 "//blimp/common", |
| 76 "//blimp/common/proto", | 77 "//blimp/common/proto", |
| 77 "//blimp/engine:blob_channel_mojo_cpp_sources", | 78 "//blimp/engine:blob_channel_mojo_cpp_sources", |
| 78 "//blimp/net", | 79 "//blimp/net", |
| 79 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 80 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 80 "//components/crash/content/app:lib", | 81 "//components/crash/content/app:lib", |
| 81 "//content/public/app:both", | 82 "//content/public/app:both", |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 "//content/test:test_support", | 657 "//content/test:test_support", |
| 657 "//testing/gmock", | 658 "//testing/gmock", |
| 658 "//testing/gtest", | 659 "//testing/gtest", |
| 659 ] | 660 ] |
| 660 | 661 |
| 661 data = [ | 662 data = [ |
| 662 "data/", | 663 "data/", |
| 663 "$root_out_dir/blimp_engine.pak", | 664 "$root_out_dir/blimp_engine.pak", |
| 664 ] | 665 ] |
| 665 } | 666 } |
| OLD | NEW |