| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 "app/blimp_content_main_delegate.cc", | 54 "app/blimp_content_main_delegate.cc", |
| 55 "app/blimp_content_main_delegate.h", | 55 "app/blimp_content_main_delegate.h", |
| 56 "app/blimp_content_renderer_client.cc", | 56 "app/blimp_content_renderer_client.cc", |
| 57 "app/blimp_content_renderer_client.h", | 57 "app/blimp_content_renderer_client.h", |
| 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", |
| 65 "app/blimp_system_url_request_context_getter.h", |
| 64 "app/blimp_url_request_context_getter.cc", | 66 "app/blimp_url_request_context_getter.cc", |
| 65 "app/blimp_url_request_context_getter.h", | 67 "app/blimp_url_request_context_getter.h", |
| 66 "app/engine_settings.cc", | 68 "app/engine_settings.cc", |
| 67 "app/engine_settings.h", | 69 "app/engine_settings.h", |
| 68 "app/settings_manager.cc", | 70 "app/settings_manager.cc", |
| 69 "app/settings_manager.h", | 71 "app/settings_manager.h", |
| 70 "app/switches.cc", | 72 "app/switches.cc", |
| 71 "app/switches.h", | 73 "app/switches.h", |
| 72 ] | 74 ] |
| 73 | 75 |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 _rebased_dockerfile, | 311 _rebased_dockerfile, |
| 310 "--startup-script", | 312 "--startup-script", |
| 311 _rebased_startup_script, | 313 _rebased_startup_script, |
| 312 "--manifest", | 314 "--manifest", |
| 313 _rebased_manifest, | 315 _rebased_manifest, |
| 314 "--output", | 316 "--output", |
| 315 rebase_path(_bundle), | 317 rebase_path(_bundle), |
| 316 ] | 318 ] |
| 317 } | 319 } |
| 318 } | 320 } |
| OLD | NEW |