Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(659)

Side by Side Diff: blimp/test/fake_engine/BUILD.gn

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « blimp/test/data/test_client_token ('k') | blimp/test/fake_engine/fake_engine.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « blimp/test/data/test_client_token ('k') | blimp/test/fake_engine/fake_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698