| 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 (use_aura) { | 7 if (use_aura) { |
| 8 | 8 |
| 9 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager | 9 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager |
| 10 shared_library("window_manager") { | 10 shared_library("window_manager") { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "window_manager_service_impl.h", | 33 "window_manager_service_impl.h", |
| 34 "window_manager_service2_impl.cc", | 34 "window_manager_service2_impl.cc", |
| 35 "window_manager_service2_impl.h", | 35 "window_manager_service2_impl.h", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 public_deps = [ | 38 public_deps = [ |
| 39 "//mojo/aura", | 39 "//mojo/aura", |
| 40 ] | 40 ] |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//ui/base", |
| 44 "//ui/gfx", |
| 45 "//ui/gfx/geometry", |
| 46 "//ui/wm", |
| 47 "//mojo/aura", |
| 43 "//mojo/application", | 48 "//mojo/application", |
| 44 "//mojo/common", | 49 "//mojo/common", |
| 45 "//mojo/converters/input_events", | 50 "//mojo/converters/input_events", |
| 46 "//mojo/environment:chromium", | 51 "//mojo/services/public/cpp/view_manager", |
| 47 "//mojo/public/cpp/bindings", | |
| 48 "//mojo/public/interfaces/application:application", | 52 "//mojo/public/interfaces/application:application", |
| 49 "//mojo/services/public/cpp/view_manager", | |
| 50 "//mojo/services/public/interfaces/window_manager", | 53 "//mojo/services/public/interfaces/window_manager", |
| 51 "//mojo/services/public/interfaces/window_manager2", | 54 "//mojo/services/public/interfaces/window_manager2", |
| 52 "//ui/aura", | |
| 53 "//ui/base", | |
| 54 "//ui/events", | |
| 55 "//ui/gfx", | |
| 56 "//ui/gfx/geometry", | |
| 57 "//ui/wm", | |
| 58 ] | 55 ] |
| 59 } | 56 } |
| 60 | 57 |
| 61 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_unittests | 58 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_unittests |
| 62 test("mojo_core_window_manager_unittests") { | 59 test("mojo_core_window_manager_unittests") { |
| 63 sources = [ | 60 sources = [ |
| 64 "window_manager_api_unittest.cc", | 61 "window_manager_api_unittest.cc", |
| 65 "window_manager_unittests.cc", | 62 "window_manager_unittests.cc", |
| 66 ] | 63 ] |
| 67 | 64 |
| 68 deps = [ | 65 deps = [ |
| 69 "//base/test:test_support", | 66 "//base/test:test_support", |
| 70 "//mojo/application_manager", | 67 "//mojo/application_manager", |
| 71 "//mojo/edk/system", | 68 "//mojo/edk/system", |
| 72 "//mojo/environment:chromium", | 69 "//mojo/environment:chromium", |
| 73 "//mojo/services/public/cpp/view_manager", | 70 "//mojo/services/public/cpp/view_manager", |
| 74 "//mojo/services/public/interfaces/view_manager", | 71 "//mojo/services/public/interfaces/view_manager", |
| 75 "//mojo/services/public/interfaces/window_manager", | 72 "//mojo/services/public/interfaces/window_manager", |
| 76 "//mojo/services/public/interfaces/window_manager2", | 73 "//mojo/services/public/interfaces/window_manager2", |
| 77 "//mojo/shell:test_support", | 74 "//mojo/shell:test_support", |
| 78 "//testing/gtest", | 75 "//testing/gtest", |
| 79 "//ui/gl", | 76 "//ui/gl", |
| 80 ] | 77 ] |
| 81 if (use_x11) { | 78 if (use_x11) { |
| 82 deps += [ "//ui/gfx/x" ] | 79 deps += [ "//ui/gfx/x" ] |
| 83 } | 80 } |
| 84 } | 81 } |
| 85 | 82 |
| 86 } # use_aura | 83 } # use_aura |
| OLD | NEW |