| 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("//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") | |
| 8 | 6 |
| 9 source_set("tab") { | 7 source_set("tab") { |
| 10 sources = [ | 8 sources = [ |
| 11 "frame.cc", | 9 "frame.cc", |
| 12 "frame.h", | 10 "frame.h", |
| 13 "frame_services.cc", | 11 "frame_services.cc", |
| 14 "frame_services.h", | 12 "frame_services.h", |
| 15 "frame_tree.cc", | 13 "frame_tree.cc", |
| 16 "frame_tree.h", | 14 "frame_tree.h", |
| 17 "frame_tree_delegate.h", | 15 "frame_tree_delegate.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 "//components/view_manager/public/cpp", | 40 "//components/view_manager/public/cpp", |
| 43 "//components/view_manager/public/interfaces", | 41 "//components/view_manager/public/interfaces", |
| 44 "//mandoline/tab/public/interfaces", | 42 "//mandoline/tab/public/interfaces", |
| 45 "//mojo/application/public/cpp:test_support", | 43 "//mojo/application/public/cpp:test_support", |
| 46 "//ui/mojo/geometry:interfaces", | 44 "//ui/mojo/geometry:interfaces", |
| 47 "//ui/mojo/geometry:util", | 45 "//ui/mojo/geometry:util", |
| 48 ] | 46 ] |
| 49 | 47 |
| 50 data_deps = [ "//components/view_manager" ] | 48 data_deps = [ "//components/view_manager" ] |
| 51 } | 49 } |
| OLD | NEW |