| 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 10 matching lines...) Expand all Loading... |
| 21 "//mojo/public/c/system:for_shared_library", | 21 "//mojo/public/c/system:for_shared_library", |
| 22 "//mojo/services/public/cpp/view_manager", | 22 "//mojo/services/public/cpp/view_manager", |
| 23 ] | 23 ] |
| 24 } | 24 } |
| 25 | 25 |
| 26 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_lib | 26 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_lib |
| 27 source_set("lib") { | 27 source_set("lib") { |
| 28 sources = [ | 28 sources = [ |
| 29 "window_manager_app.cc", | 29 "window_manager_app.cc", |
| 30 "window_manager_app.h", | 30 "window_manager_app.h", |
| 31 "window_manager_delegate.h", |
| 31 "window_manager_service_impl.cc", | 32 "window_manager_service_impl.cc", |
| 32 "window_manager_service_impl.h", | 33 "window_manager_service_impl.h", |
| 33 ] | 34 ] |
| 34 | 35 |
| 35 public_deps = [ | 36 public_deps = [ |
| 36 "//mojo/aura", | 37 "//mojo/aura", |
| 37 ] | 38 ] |
| 38 deps = [ | 39 deps = [ |
| 39 "//base", | 40 "//base", |
| 40 "//mojo/application", | 41 "//mojo/application", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "//mojo/shell:test_support", | 73 "//mojo/shell:test_support", |
| 73 "//testing/gtest", | 74 "//testing/gtest", |
| 74 "//ui/gl", | 75 "//ui/gl", |
| 75 ] | 76 ] |
| 76 if (use_x11) { | 77 if (use_x11) { |
| 77 deps += [ "//ui/gfx/x" ] | 78 deps += [ "//ui/gfx/x" ] |
| 78 } | 79 } |
| 79 } | 80 } |
| 80 | 81 |
| 81 } # use_aura | 82 } # use_aura |
| OLD | NEW |