| 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", |
| 32 "//mojo/environment:chromium", | 33 "//mojo/environment:chromium", |
| 33 "//mojo/services/gles2", | 34 "//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", | 35 "//mojo/services/public/interfaces/geometry", |
| 38 "//mojo/services/public/interfaces/gpu", | 36 "//mojo/services/public/interfaces/gpu", |
| 39 "//mojo/services/public/interfaces/native_viewport", | 37 "//mojo/services/public/interfaces/native_viewport", |
| 40 "//mojo/services/public/interfaces/surfaces", | 38 "//mojo/services/public/interfaces/surfaces", |
| 41 "//ui/events", | 39 "//ui/events", |
| 42 "//ui/events/platform", | 40 "//ui/events/platform", |
| 43 "//ui/gfx", | 41 "//ui/gfx", |
| 44 "//ui/gfx/geometry", | 42 "//ui/gfx/geometry", |
| 45 "//ui/gl", | 43 "//ui/gl", |
| 46 "//ui/platform_window", | 44 "//ui/platform_window", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 75 deps += [ | 73 deps += [ |
| 76 "//ui/events/platform/x11", | 74 "//ui/events/platform/x11", |
| 77 "//ui/platform_window/x11", | 75 "//ui/platform_window/x11", |
| 78 ] | 76 ] |
| 79 } | 77 } |
| 80 | 78 |
| 81 if (use_ozone) { | 79 if (use_ozone) { |
| 82 sources += [ "platform_viewport_ozone.cc" ] | 80 sources += [ "platform_viewport_ozone.cc" ] |
| 83 } | 81 } |
| 84 } | 82 } |
| OLD | NEW |