| 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 source_set("tab") { | 7 source_set("tab") { |
| 8 sources = [ | 8 sources = [ |
| 9 "frame.cc", | 9 "frame.cc", |
| 10 "frame.h", | 10 "frame.h", |
| 11 "frame_connection.cc", | 11 "frame_connection.cc", |
| 12 "frame_connection.h", | 12 "frame_connection.h", |
| 13 "frame_tree.cc", | 13 "frame_tree.cc", |
| 14 "frame_tree.h", | 14 "frame_tree.h", |
| 15 "frame_tree_delegate.h", | 15 "frame_tree_delegate.h", |
| 16 "frame_user_data.h", | 16 "frame_user_data.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//base", | 20 "//base", |
| 21 "//components/clipboard/public/interfaces", |
| 22 "//components/devtools_service/public/interfaces", |
| 23 "//components/resource_provider/public/interfaces", |
| 21 "//components/view_manager/public/cpp", | 24 "//components/view_manager/public/cpp", |
| 25 "//components/view_manager/public/interfaces", |
| 22 "//mojo/application/public/cpp:sources", | 26 "//mojo/application/public/cpp:sources", |
| 23 "//mojo/application/public/interfaces", | 27 "//mojo/application/public/interfaces", |
| 24 "//mojo/services/network/public/interfaces", | 28 "//mojo/services/network/public/interfaces", |
| 25 "//third_party/mojo/src/mojo/public/cpp/bindings", | 29 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 26 ] | 30 ] |
| 27 | 31 |
| 28 public_deps = [ | 32 public_deps = [ |
| 29 "//mandoline/tab/public/interfaces", | 33 "//mandoline/tab/public/interfaces", |
| 30 ] | 34 ] |
| 35 |
| 36 if (is_linux && !is_android) { |
| 37 deps += [ "//components/font_service/public/interfaces" ] |
| 38 } |
| 31 } | 39 } |
| 32 | 40 |
| 33 source_set("test_support") { | 41 source_set("test_support") { |
| 34 sources = [ | 42 sources = [ |
| 35 "test_frame_tree_delegate.cc", | 43 "test_frame_tree_delegate.cc", |
| 36 "test_frame_tree_delegate.h", | 44 "test_frame_tree_delegate.h", |
| 37 ] | 45 ] |
| 38 deps = [ | 46 deps = [ |
| 39 ":tab", | 47 ":tab", |
| 40 "//base", | 48 "//base", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 57 "//components/view_manager/public/interfaces", | 65 "//components/view_manager/public/interfaces", |
| 58 "//mandoline/tab/public/interfaces", | 66 "//mandoline/tab/public/interfaces", |
| 59 "//mojo/application/public/cpp:sources", | 67 "//mojo/application/public/cpp:sources", |
| 60 "//mojo/application/public/cpp:test_support", | 68 "//mojo/application/public/cpp:test_support", |
| 61 "//ui/mojo/geometry:interfaces", | 69 "//ui/mojo/geometry:interfaces", |
| 62 "//ui/mojo/geometry:util", | 70 "//ui/mojo/geometry:util", |
| 63 ] | 71 ] |
| 64 | 72 |
| 65 data_deps = [ "//components/view_manager" ] | 73 data_deps = [ "//components/view_manager" ] |
| 66 } | 74 } |
| OLD | NEW |