| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//mojo/public/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 source_set("lib") { | 11 source_set("lib") { |
| 12 sources = [ | 12 sources = [ |
| 13 "accelerator_registrar_impl.cc", | 13 "accelerator_registrar_impl.cc", |
| 14 "accelerator_registrar_impl.h", | 14 "accelerator_registrar_impl.h", |
| 15 "background_layout.cc", | 15 "background_layout.cc", |
| 16 "background_layout.h", | 16 "background_layout.h", |
| 17 "disconnected_app_handler.cc", |
| 18 "disconnected_app_handler.h", |
| 17 "fill_layout.cc", | 19 "fill_layout.cc", |
| 18 "fill_layout.h", | 20 "fill_layout.h", |
| 19 "frame/caption_buttons/caption_button_types.h", | 21 "frame/caption_buttons/caption_button_types.h", |
| 20 "frame/caption_buttons/frame_caption_button.cc", | 22 "frame/caption_buttons/frame_caption_button.cc", |
| 21 "frame/caption_buttons/frame_caption_button.h", | 23 "frame/caption_buttons/frame_caption_button.h", |
| 22 "frame/caption_buttons/frame_caption_button_container_view.cc", | 24 "frame/caption_buttons/frame_caption_button_container_view.cc", |
| 23 "frame/caption_buttons/frame_caption_button_container_view.h", | 25 "frame/caption_buttons/frame_caption_button_container_view.h", |
| 24 "frame/default_header_painter.cc", | 26 "frame/default_header_painter.cc", |
| 25 "frame/default_header_painter.h", | 27 "frame/default_header_painter.h", |
| 26 "frame/frame_border_hit_test_controller.cc", | 28 "frame/frame_border_hit_test_controller.cc", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "window_manager_unittest.cc", | 146 "window_manager_unittest.cc", |
| 145 ] | 147 ] |
| 146 | 148 |
| 147 deps = [ | 149 deps = [ |
| 148 ":lib", | 150 ":lib", |
| 149 "//base", | 151 "//base", |
| 150 "//base/test:test_config", | 152 "//base/test:test_config", |
| 151 "//components/mus/public/cpp", | 153 "//components/mus/public/cpp", |
| 152 "//components/mus/public/cpp/tests:unittest_support", | 154 "//components/mus/public/cpp/tests:unittest_support", |
| 153 "//components/mus/public/interfaces", | 155 "//components/mus/public/interfaces", |
| 156 "//mash/wm/public/interfaces", |
| 154 "//mojo/converters/geometry", | 157 "//mojo/converters/geometry", |
| 155 "//mojo/converters/input_events", | 158 "//mojo/converters/input_events", |
| 156 "//mojo/edk/system", | 159 "//mojo/edk/system", |
| 157 "//mojo/gles2", | 160 "//mojo/gles2", |
| 158 "//mojo/platform_handle", | 161 "//mojo/platform_handle", |
| 159 "//mojo/public/cpp/system", | 162 "//mojo/public/cpp/system", |
| 160 "//services/shell/public/cpp:shell_test_support", | 163 "//services/shell/public/cpp:shell_test_support", |
| 161 "//testing/gtest", | 164 "//testing/gtest", |
| 162 "//ui/base", | 165 "//ui/base", |
| 163 "//ui/events", | 166 "//ui/events", |
| 164 "//ui/gfx:test_support", | 167 "//ui/gfx:test_support", |
| 165 "//ui/gfx/geometry", | 168 "//ui/gfx/geometry", |
| 166 "//ui/mojo/geometry:interfaces", | 169 "//ui/mojo/geometry:interfaces", |
| 167 "//ui/mojo/geometry:util", | 170 "//ui/mojo/geometry:util", |
| 168 ] | 171 ] |
| 169 | 172 |
| 170 data_deps = [ | 173 data_deps = [ |
| 171 ":wm", | 174 ":wm", |
| 172 "//mash/quick_launch", | 175 "//mash/quick_launch", |
| 173 ] | 176 ] |
| 174 } | 177 } |
| OLD | NEW |