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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 source_set("engine_browsertests") { 7 if (is_linux) {
8 testonly = true 8 source_set("engine_browsertests") {
9 testonly = true
9 10
11 sources = [
12 "browser_tests/blimp_browser_test.cc",
13 "browser_tests/blimp_browser_test.h",
14 "browser_tests/blimp_test_launcher.cc",
15 "browser_tests/engine_browsertest.cc",
16 ]
17
18 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
19
20 deps = [
21 "//base",
22 "//blimp/client:feature",
23 "//blimp/client:session",
24 "//blimp/client:switches",
25 "//blimp/client:test_support",
26 "//blimp/common",
27 "//blimp/engine:app",
28 "//blimp/engine:app_config",
29 "//blimp/engine:app_switches",
30 "//blimp/engine:pak",
31 "//blimp/engine:session",
32 "//blimp/engine:test_support",
33 "//blimp/net",
34 "//content/public/app:both",
35 "//content/test:browsertest_base",
36 "//content/test:test_support",
37 "//testing/gmock",
38 "//testing/gtest",
39 ]
40
41 data = [
42 "data/",
43 "$root_out_dir/blimp_engine.pak",
44 ]
45 }
46 }
47
48 source_set("support") {
10 sources = [ 49 sources = [
11 "browser_tests/blimp_browser_test.cc", 50 "support/compositor/picture_cache_test_support.cc",
12 "browser_tests/blimp_browser_test.h", 51 "support/compositor/picture_cache_test_support.h",
13 "browser_tests/blimp_test_launcher.cc",
14 "browser_tests/engine_browsertest.cc",
15 ] 52 ]
16 53
17 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
18
19 deps = [ 54 deps = [
20 "//base",
21 "//blimp/client:feature",
22 "//blimp/client:session",
23 "//blimp/client:switches",
24 "//blimp/client:test_support",
25 "//blimp/common", 55 "//blimp/common",
26 "//blimp/engine:app", 56 "//cc",
27 "//blimp/engine:app_config", 57 "//skia",
28 "//blimp/engine:app_switches", 58 "//ui/gfx",
29 "//blimp/engine:pak", 59 "//ui/gfx/geometry",
30 "//blimp/engine:session",
31 "//blimp/engine:test_support",
32 "//blimp/net",
33 "//content/public/app:both",
34 "//content/test:browsertest_base",
35 "//content/test:test_support",
36 "//testing/gmock",
37 "//testing/gtest",
38 ]
39
40 data = [
41 "data/",
42 "$root_out_dir/blimp_engine.pak",
43 ] 60 ]
44 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698