| 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("//testing/test.gni") | |
| 6 | |
| 7 source_set("integration_tests") { | |
| 8 testonly = true | |
| 9 | |
| 10 sources = [ | |
| 11 "blimp_client_integration_test.cc", | |
| 12 ] | |
| 13 | |
| 14 deps = [ | |
| 15 "//blimp/client/core/context", | |
| 16 "//blimp/client/core/settings", | |
| 17 "//blimp/client/public:public_headers", | |
| 18 "//blimp/client/test", | |
| 19 "//blimp/net", | |
| 20 "//components/prefs:test_support", | |
| 21 "//services/service_manager/public/cpp", | |
| 22 "//testing/gtest", | |
| 23 ] | |
| 24 } | |
| OLD | NEW |