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 | 6 |
7 if (!is_android) { | 7 if (!is_android) { |
8 shared_library("native_viewport") { | 8 shared_library("native_viewport") { |
9 output_name = "mojo_native_viewport_service" | 9 output_name = "mojo_native_viewport_service" |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 } | 22 } |
23 } | 23 } |
24 | 24 |
25 source_set("lib") { | 25 source_set("lib") { |
26 deps = [ | 26 deps = [ |
27 "//base", | 27 "//base", |
28 "//cc/surfaces", | 28 "//cc/surfaces", |
29 "//gpu/command_buffer/service", | 29 "//gpu/command_buffer/service", |
30 "//mojo/application", | 30 "//mojo/application", |
31 "//mojo/common", | 31 "//mojo/common", |
| 32 "//mojo/converters/geometry", |
| 33 "//mojo/converters/input_events", |
| 34 "//mojo/converters/surfaces", |
32 "//mojo/environment:chromium", | 35 "//mojo/environment:chromium", |
33 "//mojo/services/gles2", | 36 "//mojo/services/gles2", |
34 "//mojo/services/public/cpp/geometry", | |
35 "//mojo/services/public/cpp/input_events", | |
36 "//mojo/services/public/cpp/surfaces", | |
37 "//mojo/services/public/interfaces/geometry", | 37 "//mojo/services/public/interfaces/geometry", |
38 "//mojo/services/public/interfaces/gpu", | 38 "//mojo/services/public/interfaces/gpu", |
39 "//mojo/services/public/interfaces/native_viewport", | 39 "//mojo/services/public/interfaces/native_viewport", |
40 "//mojo/services/public/interfaces/surfaces", | 40 "//mojo/services/public/interfaces/surfaces", |
41 "//ui/events", | 41 "//ui/events", |
42 "//ui/events/platform", | 42 "//ui/events/platform", |
43 "//ui/gfx", | 43 "//ui/gfx", |
44 "//ui/gfx/geometry", | 44 "//ui/gfx/geometry", |
45 "//ui/gl", | 45 "//ui/gl", |
46 "//ui/platform_window", | 46 "//ui/platform_window", |
(...skipping 28 matching lines...) Expand all Loading... |
75 deps += [ | 75 deps += [ |
76 "//ui/events/platform/x11", | 76 "//ui/events/platform/x11", |
77 "//ui/platform_window/x11", | 77 "//ui/platform_window/x11", |
78 ] | 78 ] |
79 } | 79 } |
80 | 80 |
81 if (use_ozone) { | 81 if (use_ozone) { |
82 sources += [ "platform_viewport_ozone.cc" ] | 82 sources += [ "platform_viewport_ozone.cc" ] |
83 } | 83 } |
84 } | 84 } |
OLD | NEW |