OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 source_set("tab") { | 9 source_set("tab") { |
10 sources = [ | 10 sources = [ |
11 "frame.cc", | 11 "frame.cc", |
12 "frame.h", | 12 "frame.h", |
13 "frame_services.cc", | 13 "frame_connection.cc", |
14 "frame_services.h", | 14 "frame_connection.h", |
15 "frame_tree.cc", | 15 "frame_tree.cc", |
16 "frame_tree.h", | 16 "frame_tree.h", |
17 "frame_tree_delegate.h", | 17 "frame_tree_delegate.h", |
18 "frame_user_data.h", | 18 "frame_user_data.h", |
19 ] | 19 ] |
20 | 20 |
21 deps = [ | 21 deps = [ |
22 "//base", | 22 "//base", |
23 "//components/view_manager/public/cpp", | 23 "//components/view_manager/public/cpp", |
24 "//mandoline/tab/public/interfaces", | 24 "//mandoline/tab/public/interfaces", |
25 "//mojo/application/public/cpp", | 25 "//mojo/application/public/cpp:sources", |
26 "//mojo/application/public/interfaces", | 26 "//mojo/application/public/interfaces", |
| 27 "//mojo/services/network/public/interfaces", |
27 "//third_party/mojo/src/mojo/public/cpp/bindings", | 28 "//third_party/mojo/src/mojo/public/cpp/bindings", |
28 ] | 29 ] |
29 } | 30 } |
30 | 31 |
31 mojo_native_application("mandoline_frame_apptests") { | 32 mojo_native_application("mandoline_frame_apptests") { |
32 testonly = true | 33 testonly = true |
33 | 34 |
34 sources = [ | 35 sources = [ |
35 "frame_apptest.cc", | 36 "frame_apptest.cc", |
36 ] | 37 ] |
37 | 38 |
38 deps = [ | 39 deps = [ |
39 ":tab", | 40 ":tab", |
40 "//base", | 41 "//base", |
41 "//base/test:test_config", | 42 "//base/test:test_config", |
42 "//components/view_manager/public/cpp", | 43 "//components/view_manager/public/cpp", |
43 "//components/view_manager/public/interfaces", | 44 "//components/view_manager/public/interfaces", |
44 "//mandoline/tab/public/interfaces", | 45 "//mandoline/tab/public/interfaces", |
45 "//mojo/application/public/cpp:test_support", | 46 "//mojo/application/public/cpp:test_support", |
46 "//ui/mojo/geometry:interfaces", | 47 "//ui/mojo/geometry:interfaces", |
47 "//ui/mojo/geometry:util", | 48 "//ui/mojo/geometry:util", |
48 ] | 49 ] |
49 | 50 |
50 data_deps = [ "//components/view_manager" ] | 51 data_deps = [ "//components/view_manager" ] |
51 } | 52 } |
OLD | NEW |