OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 mojo_native_application("browser") { | 9 mojo_native_application("browser") { |
10 sources = [ | 10 sources = [ |
(...skipping 12 matching lines...) Expand all Loading... |
23 "//mojo/services/geometry/public/interfaces", | 23 "//mojo/services/geometry/public/interfaces", |
24 "//mojo/services/input_events/public/interfaces", | 24 "//mojo/services/input_events/public/interfaces", |
25 "//mojo/services/navigation/public/interfaces", | 25 "//mojo/services/navigation/public/interfaces", |
26 "//mojo/services/view_manager/public/cpp", | 26 "//mojo/services/view_manager/public/cpp", |
27 "//mojo/services/view_manager/public/interfaces", | 27 "//mojo/services/view_manager/public/interfaces", |
28 "//third_party/icu", | 28 "//third_party/icu", |
29 "//ui/base", | 29 "//ui/base", |
30 "//ui/events:events", | 30 "//ui/events:events", |
31 "//ui/gfx", | 31 "//ui/gfx", |
32 "//ui/gfx/geometry", | 32 "//ui/gfx/geometry", |
33 "//ui/resources", | |
34 "//url", | 33 "//url", |
35 ] | 34 ] |
36 } | 35 } |
37 | 36 |
38 mojom("bindings") { | 37 mojom("bindings") { |
39 sources = [ | 38 sources = [ |
40 "browser_host.mojom", | 39 "browser_host.mojom", |
41 ] | 40 ] |
42 } | 41 } |
OLD | NEW |