| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 "browser_tests/blimp_browser_test.cc", | 671 "browser_tests/blimp_browser_test.cc", |
| 672 "browser_tests/blimp_browser_test.h", | 672 "browser_tests/blimp_browser_test.h", |
| 673 "browser_tests/blimp_test_launcher.cc", | 673 "browser_tests/blimp_test_launcher.cc", |
| 674 "browser_tests/engine_browsertest.cc", | 674 "browser_tests/engine_browsertest.cc", |
| 675 ] | 675 ] |
| 676 | 676 |
| 677 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 677 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 678 | 678 |
| 679 deps = [ | 679 deps = [ |
| 680 "//base", | 680 "//base", |
| 681 "//blimp/client:feature", | |
| 682 "//blimp/client:session", | 681 "//blimp/client:session", |
| 683 "//blimp/client:test_support", | 682 "//blimp/client:test_support", |
| 684 "//blimp/client/core:switches", | 683 "//blimp/client/core:switches", |
| 685 "//blimp/client/core/contents:test_support", | 684 "//blimp/client/core/contents:test_support", |
| 685 "//blimp/client/core/render_widget:test_support", |
| 686 "//blimp/client/core/session", | 686 "//blimp/client/core/session", |
| 687 "//blimp/client/support:test_support", |
| 687 "//blimp/common", | 688 "//blimp/common", |
| 688 "//blimp/engine:app", | 689 "//blimp/engine:app", |
| 689 "//blimp/engine:app_config", | 690 "//blimp/engine:app_config", |
| 690 "//blimp/engine:app_switches", | 691 "//blimp/engine:app_switches", |
| 691 "//blimp/engine:pak", | 692 "//blimp/engine:pak", |
| 692 "//blimp/engine:session", | 693 "//blimp/engine:session", |
| 693 "//blimp/engine:test_support", | 694 "//blimp/engine:test_support", |
| 694 "//blimp/net", | 695 "//blimp/net", |
| 695 "//content/public/app:both", | 696 "//content/public/app:both", |
| 696 "//content/test:test_support", | 697 "//content/test:test_support", |
| 697 "//testing/gmock", | 698 "//testing/gmock", |
| 698 "//testing/gtest", | 699 "//testing/gtest", |
| 699 ] | 700 ] |
| 700 | 701 |
| 701 data = [ | 702 data = [ |
| 702 "//blimp/test/data/", | 703 "//blimp/test/data/", |
| 703 "$root_out_dir/blimp_engine.pak", | 704 "$root_out_dir/blimp_engine.pak", |
| 704 ] | 705 ] |
| 705 } | 706 } |
| OLD | NEW |