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

Side by Side Diff: blimp/test/BUILD.gn

Issue 1929723002: [Blimp] Adds blimp engine browser test framework and LoadUrl test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni")
8 import("//testing/test.gni")
9
10 test("engine_browsertests") {
11 sources = [
12 "blimp_browser_test.cc",
13 "blimp_browser_test.h",
14 "blimp_test_launcher.cc",
15 "engine_browsertest.cc",
16 "test_client.cc",
17 "test_client.h",
18 ]
19
20 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
21
22 deps = [
23 "//base",
24 "//blimp/client:feature",
25 "//blimp/client:session",
26 "//blimp/client:switches",
27 "//blimp/engine:app",
28 "//blimp/engine:app_switches",
29 "//blimp/engine:pak",
30 "//blimp/net:blimp_net",
31 "//content/public/app:both",
32 "//content/test:browsertest_base",
33 "//content/test:test_support",
34 "//testing/gmock",
35 "//testing/gtest",
36 ]
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698