| OLD | NEW |
| (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 } |
| OLD | NEW |