| Index: blimp/test/BUILD.gn
|
| diff --git a/blimp/test/BUILD.gn b/blimp/test/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..673dcaa5a94d9f3aef3a5a1a06932587bbad545a
|
| --- /dev/null
|
| +++ b/blimp/test/BUILD.gn
|
| @@ -0,0 +1,37 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import("//build/config/features.gni")
|
| +import("//build/config/sanitizers/sanitizers.gni")
|
| +import("//build/config/ui.gni")
|
| +import("//testing/test.gni")
|
| +
|
| +test("engine_browsertests") {
|
| + sources = [
|
| + "blimp_browser_test.cc",
|
| + "blimp_browser_test.h",
|
| + "blimp_test_launcher.cc",
|
| + "engine_browsertest.cc",
|
| + "test_client.cc",
|
| + "test_client.h",
|
| + ]
|
| +
|
| + defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//blimp/client:feature",
|
| + "//blimp/client:session",
|
| + "//blimp/client:switches",
|
| + "//blimp/engine:app",
|
| + "//blimp/engine:app_switches",
|
| + "//blimp/engine:pak",
|
| + "//blimp/net:blimp_net",
|
| + "//content/public/app:both",
|
| + "//content/test:browsertest_base",
|
| + "//content/test:test_support",
|
| + "//testing/gmock",
|
| + "//testing/gtest",
|
| + ]
|
| +}
|
|
|