| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "app/blimp_engine_config.cc", | 58 "app/blimp_engine_config.cc", |
| 59 "app/blimp_engine_config.h", | 59 "app/blimp_engine_config.h", |
| 60 "app/blimp_network_delegate.cc", | 60 "app/blimp_network_delegate.cc", |
| 61 "app/blimp_network_delegate.h", | 61 "app/blimp_network_delegate.h", |
| 62 "app/blimp_permission_manager.cc", | 62 "app/blimp_permission_manager.cc", |
| 63 "app/blimp_permission_manager.h", | 63 "app/blimp_permission_manager.h", |
| 64 "app/blimp_system_url_request_context_getter.cc", | 64 "app/blimp_system_url_request_context_getter.cc", |
| 65 "app/blimp_system_url_request_context_getter.h", | 65 "app/blimp_system_url_request_context_getter.h", |
| 66 "app/blimp_url_request_context_getter.cc", | 66 "app/blimp_url_request_context_getter.cc", |
| 67 "app/blimp_url_request_context_getter.h", | 67 "app/blimp_url_request_context_getter.h", |
| 68 "app/engine_settings.cc", | |
| 69 "app/engine_settings.h", | 68 "app/engine_settings.h", |
| 70 "app/settings_manager.cc", | 69 "app/settings_manager.cc", |
| 71 "app/settings_manager.h", | 70 "app/settings_manager.h", |
| 72 "app/switches.cc", | 71 "app/switches.cc", |
| 73 "app/switches.h", | 72 "app/switches.h", |
| 74 ] | 73 ] |
| 75 | 74 |
| 76 deps = [ | 75 deps = [ |
| 77 ":app_ui", | 76 ":app_ui", |
| 78 ":blob_channel", | 77 ":blob_channel", |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 _rebased_dockerfile, | 312 _rebased_dockerfile, |
| 314 "--startup-script", | 313 "--startup-script", |
| 315 _rebased_startup_script, | 314 _rebased_startup_script, |
| 316 "--manifest", | 315 "--manifest", |
| 317 _rebased_manifest, | 316 _rebased_manifest, |
| 318 "--output", | 317 "--output", |
| 319 rebase_path(_bundle), | 318 rebase_path(_bundle), |
| 320 ] | 319 ] |
| 321 } | 320 } |
| 322 } | 321 } |
| OLD | NEW |