| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 | 9 |
| 10 source_set("lib") { | 10 source_set("lib") { |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//ui/gfx", | 123 "//ui/gfx", |
| 124 "//ui/gfx/geometry", | 124 "//ui/gfx/geometry", |
| 125 "//ui/gfx/geometry/mojo", | 125 "//ui/gfx/geometry/mojo", |
| 126 "//ui/gl", | 126 "//ui/gl", |
| 127 "//ui/platform_window", | 127 "//ui/platform_window", |
| 128 "//ui/platform_window:platform_impls", | 128 "//ui/platform_window:platform_impls", |
| 129 "//ui/platform_window/mojo", | 129 "//ui/platform_window/mojo", |
| 130 ] | 130 ] |
| 131 | 131 |
| 132 if (use_ozone) { | 132 if (use_ozone) { |
| 133 sources -= [ | 133 if (is_chromeos) { |
| 134 "platform_screen_impl.cc", | 134 sources -= [ |
| 135 "platform_screen_impl.h", | 135 "platform_screen_impl.cc", |
| 136 ] | 136 "platform_screen_impl.h", |
| 137 sources += [ | 137 ] |
| 138 "platform_screen_impl_ozone.cc", | 138 sources += [ |
| 139 "platform_screen_impl_ozone.h", | 139 "platform_screen_impl_ozone.cc", |
| 140 ] | 140 "platform_screen_impl_ozone.h", |
| 141 ] |
| 142 } |
| 143 |
| 141 public_deps += [ "//ui/ozone:ozone" ] | 144 public_deps += [ "//ui/ozone:ozone" ] |
| 142 } | 145 } |
| 143 } | 146 } |
| 144 | 147 |
| 145 source_set("test_interface") { | 148 source_set("test_interface") { |
| 146 sources = [ | 149 sources = [ |
| 147 "window_server_test_impl.cc", | 150 "window_server_test_impl.cc", |
| 148 "window_server_test_impl.h", | 151 "window_server_test_impl.h", |
| 149 ] | 152 ] |
| 150 | 153 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 | 248 |
| 246 data_deps = [ | 249 data_deps = [ |
| 247 ":mus_ws_unittests_app_manifest", | 250 ":mus_ws_unittests_app_manifest", |
| 248 ] | 251 ] |
| 249 } | 252 } |
| 250 | 253 |
| 251 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 254 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 252 application_name = "mus_ws_unittests_app" | 255 application_name = "mus_ws_unittests_app" |
| 253 source = "mus_ws_unittests_app_manifest.json" | 256 source = "mus_ws_unittests_app_manifest.json" |
| 254 } | 257 } |
| OLD | NEW |