Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: blimp/test/BUILD.gn

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from kmarshall Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",
]
}

Powered by Google App Engine
This is Rietveld 408576698