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

Side by Side Diff: mojo/dart/embedder/test/BUILD.gn

Issue 1545483003: Dart: Reorganize files (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix build file Created 4 years, 12 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 | « mojo/dart/embedder/snapshotter/vm.cc ('k') | mojo/dart/embedder/test/dart_finalizer_test.cc » ('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 2014 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("//mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni")
7
8 group("test") {
9 testonly = true
10 deps = [
11 ":dart_finalizer_unittests",
12 ":dart_to_cpp_unittests",
13 ":dart_unittests",
14 ":dart_validation_unittests",
15 ]
16 }
17
18 source_set("dart_controller_for_test") {
19 testonly = true
20 sources = [
21 "$root_gen_dir/dart_snapshot.cc",
22 ]
23 deps = [
24 "//mojo/dart/embedder:dart_controller_no_snapshot",
25 "//mojo/dart/embedder:generate_snapshot_file",
26 ]
27 }
28
29 group("dart_test_deps") {
30 testonly = true
31 public_deps = [
32 ":dart_controller_for_test",
33 "//base",
34 "//mojo/dart/packages",
35 "//mojo/dart/embedder:dart_controller_no_snapshot",
36 "//mojo/edk/test:run_all_unittests",
37 "//mojo/public/cpp/environment",
38 "//mojo/public/cpp/system",
39 "//mojo/public/cpp/utility",
40 "//mojo/public/dart",
41 "//mojo/environment:chromium",
42 "//testing/gtest",
43 ]
44 }
45
46 source_set("dart_test") {
47 testonly = true
48 sources = [
49 "dart_test.cc",
50 "dart_test.h",
51 ]
52 deps = [
53 ":dart_test_deps",
54 ]
55 }
56
57 mojom("dart_to_cpp_bindings") {
58 sources = [
59 "dart_to_cpp.mojom",
60 ]
61 }
62
63 test("dart_to_cpp_unittests") {
64 sources = [
65 "dart_to_cpp_tests.cc",
66 ]
67 deps = [
68 ":dart_test",
69 ":dart_to_cpp_bindings",
70 ":dart_test_deps",
71 ]
72 }
73
74 test("dart_finalizer_unittests") {
75 sources = [
76 "dart_finalizer_test.cc",
77 ]
78 deps = [
79 ":dart_test",
80 ":dart_test_deps",
81 ]
82 }
83
84 test("dart_unittests") {
85 sources = [
86 "run_dart_tests.cc",
87 ]
88 deps = [
89 ":dart_test",
90 ":dart_test_deps",
91 ]
92 }
93
94 test("dart_validation_unittests") {
95 sources = [
96 "validation_unittest.cc",
97 ]
98 deps = [
99 ":dart_test",
100 ":dart_test_deps",
101 ]
102 }
OLDNEW
« no previous file with comments | « mojo/dart/embedder/snapshotter/vm.cc ('k') | mojo/dart/embedder/test/dart_finalizer_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698