OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("fake_engine") { | 7 source_set("fake_engine") { |
8 sources = [ | 8 sources = [ |
9 "fake_engine.cc", | 9 "fake_engine.cc", |
10 "fake_engine.h", | 10 "fake_engine.h", |
(...skipping 27 matching lines...) Expand all Loading... |
38 | 38 |
39 data_deps = [ | 39 data_deps = [ |
40 ":fake_engine_app", | 40 ":fake_engine_app", |
41 ] | 41 ] |
42 | 42 |
43 deps = [ | 43 deps = [ |
44 ":fake_engine", | 44 ":fake_engine", |
45 "//base", | 45 "//base", |
46 "//base/test:test_support", | 46 "//base/test:test_support", |
47 "//blimp/test/fake_engine/proto:proto", | 47 "//blimp/test/fake_engine/proto:proto", |
48 "//ipc", | |
49 "//testing/gmock", | 48 "//testing/gmock", |
50 "//testing/gtest", | 49 "//testing/gtest", |
51 "//third_party/grpc:grpc++_unsecure", | 50 "//third_party/grpc:grpc++_unsecure", |
52 ] | 51 ] |
53 } | 52 } |
OLD | NEW |