| 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/system.gni") | |
| 7 | 6 |
| 8 # GYP version: mojo/mojo_services.gypi:mojo_native_viewport_service_lib | 7 # GYP version: mojo/mojo_services.gypi:mojo_native_viewport_service_lib |
| 9 static_library("native_viewport") { | 8 static_library("native_viewport") { |
| 10 output_name = "mojo_native_viewport" | 9 output_name = "mojo_native_viewport" |
| 11 | 10 |
| 12 deps = [ | 11 deps = [ |
| 13 "//base", | 12 "//base", |
| 14 "//cc/surfaces", | 13 "//cc/surfaces", |
| 15 "//mojo/application", | 14 "//mojo/application", |
| 16 "//mojo/common", | 15 "//mojo/common", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 deps += [ | 61 deps += [ |
| 63 "//ui/events/platform/x11", | 62 "//ui/events/platform/x11", |
| 64 "//ui/platform_window/x11", | 63 "//ui/platform_window/x11", |
| 65 ] | 64 ] |
| 66 } | 65 } |
| 67 | 66 |
| 68 if (use_ozone) { | 67 if (use_ozone) { |
| 69 sources += [ "platform_viewport_ozone.cc" ] | 68 sources += [ "platform_viewport_ozone.cc" ] |
| 70 } | 69 } |
| 71 } | 70 } |
| OLD | NEW |