| 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", | 69 ":blob_channel", |
| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 # Include symupload target here as it is needed by the buildbots to upload | 603 # Include symupload target here as it is needed by the buildbots to upload |
| 603 # the symbol file created by dump_syms. | 604 # the symbol file created by dump_syms. |
| 604 deps = [ | 605 deps = [ |
| 605 ":blimp_engine_app", | 606 ":blimp_engine_app", |
| 606 "//breakpad:symupload", | 607 "//breakpad:symupload", |
| 607 dump_syms_label, | 608 dump_syms_label, |
| 608 ] | 609 ] |
| 609 } | 610 } |
| 610 } | 611 } |
| 611 } | 612 } |
| OLD | NEW |