| 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 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//mojo/services/native_viewport/cpp:args", | 62 "//mojo/services/native_viewport/cpp:args", |
| 63 "//services/gles2", | 63 "//services/gles2", |
| 64 "//ui/events", | 64 "//ui/events", |
| 65 "//ui/events/platform", | 65 "//ui/events/platform", |
| 66 "//ui/gl", | 66 "//ui/gl", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 if (use_ozone) { | 69 if (use_ozone) { |
| 70 sources += [ "ozone/app_delegate_ozone.cc" ] | 70 sources += [ "ozone/app_delegate_ozone.cc" ] |
| 71 deps += [ | 71 deps += [ |
| 72 "//mojo/services/ozone_drm_gpu/public/interfaces", | 72 "//mojo/services/ozone_drm_gpu/interfaces", |
| 73 "//mojo/services/ozone_drm_host/public/interfaces", | 73 "//mojo/services/ozone_drm_host/interfaces", |
| 74 "//ui/events/ozone:events_ozone_evdev", | 74 "//ui/events/ozone:events_ozone_evdev", |
| 75 "//ui/ozone", | 75 "//ui/ozone", |
| 76 ] | 76 ] |
| 77 } | 77 } |
| 78 } | 78 } |
| 79 } | 79 } |
| 80 | 80 |
| 81 source_set("lib") { | 81 source_set("lib") { |
| 82 sources = [ | 82 sources = [ |
| 83 "native_viewport_impl.cc", | 83 "native_viewport_impl.cc", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "//ui/ozone", | 142 "//ui/ozone", |
| 143 "//ui/ozone:ozone_base", | 143 "//ui/ozone:ozone_base", |
| 144 "//ui/ozone/platform/drm:drm_common", | 144 "//ui/ozone/platform/drm:drm_common", |
| 145 ] | 145 ] |
| 146 } | 146 } |
| 147 | 147 |
| 148 if (is_win) { | 148 if (is_win) { |
| 149 deps += [ "//ui/platform_window/win" ] | 149 deps += [ "//ui/platform_window/win" ] |
| 150 } | 150 } |
| 151 } | 151 } |
| OLD | NEW |