| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 ":app", | 327 ":app", |
| 328 "//base", | 328 "//base", |
| 329 ] | 329 ] |
| 330 } | 330 } |
| 331 | 331 |
| 332 source_set("app_unit_tests") { | 332 source_set("app_unit_tests") { |
| 333 testonly = true | 333 testonly = true |
| 334 | 334 |
| 335 sources = [ | 335 sources = [ |
| 336 "app/blimp_engine_config_unittest.cc", | 336 "app/blimp_engine_config_unittest.cc", |
| 337 "app/blimp_system_url_request_context_getter_unittest.cc", |
| 337 "app/settings_manager_unittest.cc", | 338 "app/settings_manager_unittest.cc", |
| 338 "app/ui/blimp_screen_unittest.cc", | 339 "app/ui/blimp_screen_unittest.cc", |
| 339 ] | 340 ] |
| 340 | 341 |
| 341 deps = [ | 342 deps = [ |
| 342 ":app", | 343 ":app", |
| 343 ":app_config", | 344 ":app_config", |
| 345 ":app_net", |
| 344 ":app_settings", | 346 ":app_settings", |
| 345 ":app_switches", | 347 ":app_switches", |
| 346 "//base", | 348 "//base", |
| 347 "//base/test:run_all_unittests", | 349 "//base/test:run_all_unittests", |
| 348 "//base/test:test_support", | 350 "//base/test:test_support", |
| 349 "//blimp/engine:app_ui", | 351 "//blimp/engine:app_ui", |
| 352 "//content/test:test_support", |
| 350 "//testing/gmock", | 353 "//testing/gmock", |
| 351 "//testing/gtest", | 354 "//testing/gtest", |
| 352 "//ui/display", | 355 "//ui/display", |
| 353 "//ui/gfx:test_support", | 356 "//ui/gfx:test_support", |
| 354 ] | 357 ] |
| 355 } | 358 } |
| 356 | 359 |
| 357 source_set("feature_unit_tests") { | 360 source_set("feature_unit_tests") { |
| 358 testonly = true | 361 testonly = true |
| 359 | 362 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 _rebased_dockerfile, | 465 _rebased_dockerfile, |
| 463 "--startup-script", | 466 "--startup-script", |
| 464 _rebased_startup_script, | 467 _rebased_startup_script, |
| 465 "--manifest", | 468 "--manifest", |
| 466 _rebased_manifest, | 469 _rebased_manifest, |
| 467 "--output", | 470 "--output", |
| 468 rebase_path(_bundle), | 471 rebase_path(_bundle), |
| 469 ] | 472 ] |
| 470 } | 473 } |
| 471 } | 474 } |
| OLD | NEW |