| 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 mojo_native_application("window_manager") { | 8 mojo_native_application("window_manager") { |
| 9 sources = [ | 9 sources = [ |
| 10 "main.cc", | 10 "main.cc", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "window_manager_test_util.h", | 75 "window_manager_test_util.h", |
| 76 "window_manager_unittests.cc", | 76 "window_manager_unittests.cc", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 public_deps = [ | 79 public_deps = [ |
| 80 ":lib", | 80 ":lib", |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 deps = [ | 83 deps = [ |
| 84 "//base/test:test_support", | 84 "//base/test:test_support", |
| 85 "//mojo/application_manager", | |
| 86 "//mojo/converters/geometry", | 85 "//mojo/converters/geometry", |
| 87 "//mojo/edk/system", | 86 "//mojo/edk/system", |
| 88 "//mojo/environment:chromium", | 87 "//mojo/environment:chromium", |
| 89 "//mojo/public/cpp/application", | 88 "//mojo/public/cpp/application", |
| 90 "//mojo/services/view_manager/public/cpp", | 89 "//mojo/services/view_manager/public/cpp", |
| 91 "//mojo/services/view_manager/public/interfaces", | 90 "//mojo/services/view_manager/public/interfaces", |
| 92 "//mojo/services/window_manager/public/interfaces", | 91 "//mojo/services/window_manager/public/interfaces", |
| 92 "//shell/application_manager", |
| 93 "//shell:test_support", | 93 "//shell:test_support", |
| 94 "//testing/gtest", | 94 "//testing/gtest", |
| 95 "//ui/events:test_support", | 95 "//ui/events:test_support", |
| 96 "//ui/gfx", | 96 "//ui/gfx", |
| 97 "//ui/gfx:test_support", | 97 "//ui/gfx:test_support", |
| 98 "//ui/gl", | 98 "//ui/gl", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 if (use_x11) { | 101 if (use_x11) { |
| 102 deps += [ "//ui/gfx/x" ] | 102 deps += [ "//ui/gfx/x" ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 118 "//mojo/public/c/system:for_shared_library", | 118 "//mojo/public/c/system:for_shared_library", |
| 119 "//mojo/public/cpp/system:system", | 119 "//mojo/public/cpp/system:system", |
| 120 "//mojo/services/view_manager/public/cpp", | 120 "//mojo/services/view_manager/public/cpp", |
| 121 "//mojo/services/window_manager/public/interfaces", | 121 "//mojo/services/window_manager/public/interfaces", |
| 122 ] | 122 ] |
| 123 | 123 |
| 124 datadeps = [ | 124 datadeps = [ |
| 125 ":window_manager", | 125 ":window_manager", |
| 126 ] | 126 ] |
| 127 } | 127 } |
| OLD | NEW |