| 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 "//blimp/common", |
| 94 "//cc", | 95 "//cc", |
| 95 "//content/public/common", | 96 "//content/public/common", |
| 96 "//ui/gl", | 97 "//ui/gl", |
| 97 "//ui/native_theme", | 98 "//ui/native_theme", |
| 98 ] | 99 ] |
| 99 } | 100 } |
| 100 | 101 |
| 101 source_set("app_net") { | 102 source_set("app_net") { |
| 102 sources = [ | 103 sources = [ |
| 103 "app/blimp_network_delegate.cc", | 104 "app/blimp_network_delegate.cc", |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 ] | 340 ] |
| 340 | 341 |
| 341 deps = [ | 342 deps = [ |
| 342 ":app", | 343 ":app", |
| 343 ":app_config", | 344 ":app_config", |
| 344 ":app_settings", | 345 ":app_settings", |
| 345 ":app_switches", | 346 ":app_switches", |
| 346 "//base", | 347 "//base", |
| 347 "//base/test:run_all_unittests", | 348 "//base/test:run_all_unittests", |
| 348 "//base/test:test_support", | 349 "//base/test:test_support", |
| 350 "//blimp/common:test_support", |
| 349 "//blimp/engine:app_ui", | 351 "//blimp/engine:app_ui", |
| 350 "//testing/gmock", | 352 "//testing/gmock", |
| 351 "//testing/gtest", | 353 "//testing/gtest", |
| 352 "//ui/display", | 354 "//ui/display", |
| 353 "//ui/gfx:test_support", | 355 "//ui/gfx:test_support", |
| 354 ] | 356 ] |
| 355 } | 357 } |
| 356 | 358 |
| 357 source_set("feature_unit_tests") { | 359 source_set("feature_unit_tests") { |
| 358 testonly = true | 360 testonly = true |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 _rebased_dockerfile, | 464 _rebased_dockerfile, |
| 463 "--startup-script", | 465 "--startup-script", |
| 464 _rebased_startup_script, | 466 _rebased_startup_script, |
| 465 "--manifest", | 467 "--manifest", |
| 466 _rebased_manifest, | 468 _rebased_manifest, |
| 467 "--output", | 469 "--output", |
| 468 rebase_path(_bundle), | 470 rebase_path(_bundle), |
| 469 ] | 471 ] |
| 470 } | 472 } |
| 471 } | 473 } |
| OLD | NEW |