| 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("fake_engine") { | |
| 8 sources = [ | |
| 9 "fake_engine.cc", | |
| 10 "fake_engine.h", | |
| 11 ] | |
| 12 | |
| 13 deps = [ | |
| 14 "//base", | |
| 15 "//blimp/test/fake_engine/proto:proto", | |
| 16 "//third_party/grpc:grpc++_unsecure", | |
| 17 ] | |
| 18 } | |
| 19 | |
| 20 executable("fake_engine_app") { | |
| 21 sources = [ | |
| 22 "fake_engine_main.cc", | |
| 23 ] | |
| 24 | |
| 25 deps = [ | |
| 26 ":fake_engine", | |
| 27 "//base", | |
| 28 "//blimp/test/fake_engine/proto:proto", | |
| 29 "//third_party/grpc:grpc++_unsecure", | |
| 30 ] | |
| 31 } | |
| 32 | |
| 33 test("fake_engine_app_tests") { | |
| 34 testonly = true | |
| 35 sources = [ | |
| 36 "fake_engine_app_tests.cc", | |
| 37 ] | |
| 38 | |
| 39 data_deps = [ | |
| 40 ":fake_engine_app", | |
| 41 ] | |
| 42 | |
| 43 deps = [ | |
| 44 ":fake_engine", | |
| 45 "//base", | |
| 46 "//base/test:test_support", | |
| 47 "//blimp/test/fake_engine/proto:proto", | |
| 48 "//testing/gmock", | |
| 49 "//testing/gtest", | |
| 50 "//third_party/grpc:grpc++_unsecure", | |
| 51 ] | |
| 52 } | |
| OLD | NEW |