Index: blimp/test/BUILD.gn |
diff --git a/blimp/test/BUILD.gn b/blimp/test/BUILD.gn |
index f5460f2e043927700a30d607ebaca05a09cce1eb..48e77b29ecf428545a67aef36ecc438e27862e92 100644 |
--- a/blimp/test/BUILD.gn |
+++ b/blimp/test/BUILD.gn |
@@ -4,41 +4,58 @@ |
import("//testing/test.gni") |
-source_set("engine_browsertests") { |
- testonly = true |
+if (is_linux) { |
+ source_set("engine_browsertests") { |
+ testonly = true |
+ sources = [ |
+ "browser_tests/blimp_browser_test.cc", |
+ "browser_tests/blimp_browser_test.h", |
+ "browser_tests/blimp_test_launcher.cc", |
+ "browser_tests/engine_browsertest.cc", |
+ ] |
+ |
+ defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
+ |
+ deps = [ |
+ "//base", |
+ "//blimp/client:feature", |
+ "//blimp/client:session", |
+ "//blimp/client:switches", |
+ "//blimp/client:test_support", |
+ "//blimp/common", |
+ "//blimp/engine:app", |
+ "//blimp/engine:app_config", |
+ "//blimp/engine:app_switches", |
+ "//blimp/engine:pak", |
+ "//blimp/engine:session", |
+ "//blimp/engine:test_support", |
+ "//blimp/net", |
+ "//content/public/app:both", |
+ "//content/test:browsertest_base", |
+ "//content/test:test_support", |
+ "//testing/gmock", |
+ "//testing/gtest", |
+ ] |
+ |
+ data = [ |
+ "data/", |
+ "$root_out_dir/blimp_engine.pak", |
+ ] |
+ } |
+} |
+ |
+source_set("support") { |
sources = [ |
- "browser_tests/blimp_browser_test.cc", |
- "browser_tests/blimp_browser_test.h", |
- "browser_tests/blimp_test_launcher.cc", |
- "browser_tests/engine_browsertest.cc", |
+ "support/compositor/picture_cache_test_support.cc", |
+ "support/compositor/picture_cache_test_support.h", |
] |
- defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
- |
deps = [ |
- "//base", |
- "//blimp/client:feature", |
- "//blimp/client:session", |
- "//blimp/client:switches", |
- "//blimp/client:test_support", |
"//blimp/common", |
- "//blimp/engine:app", |
- "//blimp/engine:app_config", |
- "//blimp/engine:app_switches", |
- "//blimp/engine:pak", |
- "//blimp/engine:session", |
- "//blimp/engine:test_support", |
- "//blimp/net", |
- "//content/public/app:both", |
- "//content/test:browsertest_base", |
- "//content/test:test_support", |
- "//testing/gmock", |
- "//testing/gtest", |
- ] |
- |
- data = [ |
- "data/", |
- "$root_out_dir/blimp_engine.pak", |
+ "//cc", |
+ "//skia", |
+ "//ui/gfx", |
+ "//ui/gfx/geometry", |
] |
} |