| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 } | 84 } |
| 85 | 85 |
| 86 source_set("app_config") { | 86 source_set("app_config") { |
| 87 sources = [ | 87 sources = [ |
| 88 "app/blimp_engine_config.cc", | 88 "app/blimp_engine_config.cc", |
| 89 "app/blimp_engine_config.h", | 89 "app/blimp_engine_config.h", |
| 90 ] | 90 ] |
| 91 deps = [ | 91 deps = [ |
| 92 ":app_switches", | 92 ":app_switches", |
| 93 "//base", | 93 "//base", |
| 94 "//cc", |
| 95 "//content/public/common", |
| 96 "//ui/gl", |
| 97 "//ui/native_theme", |
| 94 ] | 98 ] |
| 95 } | 99 } |
| 96 | 100 |
| 97 source_set("app_net") { | 101 source_set("app_net") { |
| 98 sources = [ | 102 sources = [ |
| 99 "app/blimp_network_delegate.cc", | 103 "app/blimp_network_delegate.cc", |
| 100 "app/blimp_network_delegate.h", | 104 "app/blimp_network_delegate.h", |
| 101 "app/blimp_system_url_request_context_getter.cc", | 105 "app/blimp_system_url_request_context_getter.cc", |
| 102 "app/blimp_system_url_request_context_getter.h", | 106 "app/blimp_system_url_request_context_getter.h", |
| 103 "app/blimp_url_request_context_getter.cc", | 107 "app/blimp_url_request_context_getter.cc", |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 } | 378 } |
| 375 | 379 |
| 376 if (is_linux) { | 380 if (is_linux) { |
| 377 executable("blimp_engine_app") { | 381 executable("blimp_engine_app") { |
| 378 sources = [ | 382 sources = [ |
| 379 "app/blimp_main.cc", | 383 "app/blimp_main.cc", |
| 380 ] | 384 ] |
| 381 | 385 |
| 382 deps = [ | 386 deps = [ |
| 383 ":app", | 387 ":app", |
| 388 ":app_config", |
| 384 ":pak", | 389 ":pak", |
| 385 "//base", | 390 "//base", |
| 386 "//blimp/net", | 391 "//blimp/net", |
| 387 "//content/public/app:both", | 392 "//content/public/app:both", |
| 388 ] | 393 ] |
| 389 } | 394 } |
| 390 | 395 |
| 391 group("engine") { | 396 group("engine") { |
| 392 deps = [ | 397 deps = [ |
| 393 ":blimp_engine_app", | 398 ":blimp_engine_app", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 _rebased_dockerfile, | 439 _rebased_dockerfile, |
| 435 "--startup-script", | 440 "--startup-script", |
| 436 _rebased_startup_script, | 441 _rebased_startup_script, |
| 437 "--manifest", | 442 "--manifest", |
| 438 _rebased_manifest, | 443 _rebased_manifest, |
| 439 "--output", | 444 "--output", |
| 440 rebase_path(_bundle), | 445 rebase_path(_bundle), |
| 441 ] | 446 ] |
| 442 } | 447 } |
| 443 } | 448 } |
| OLD | NEW |