| 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 | 7 |
| 8 component("aura") { | 8 component("aura") { |
| 9 sources = [ | 9 sources = [ |
| 10 "../wm/public/activation_change_observer.cc", | 10 "../wm/public/activation_change_observer.cc", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "mus/mojo_gpu_memory_buffer.h", | 89 "mus/mojo_gpu_memory_buffer.h", |
| 90 "mus/mojo_gpu_memory_buffer_manager.cc", | 90 "mus/mojo_gpu_memory_buffer_manager.cc", |
| 91 "mus/mojo_gpu_memory_buffer_manager.h", | 91 "mus/mojo_gpu_memory_buffer_manager.h", |
| 92 "mus/mus_context_factory.cc", | 92 "mus/mus_context_factory.cc", |
| 93 "mus/mus_context_factory.h", | 93 "mus/mus_context_factory.h", |
| 94 "mus/mus_types.h", | 94 "mus/mus_types.h", |
| 95 "mus/mus_util.cc", | 95 "mus/mus_util.cc", |
| 96 "mus/mus_util.h", | 96 "mus/mus_util.h", |
| 97 "mus/os_exchange_data_provider_mus.cc", | 97 "mus/os_exchange_data_provider_mus.cc", |
| 98 "mus/os_exchange_data_provider_mus.h", | 98 "mus/os_exchange_data_provider_mus.h", |
| 99 "mus/property_converter.cc", |
| 99 "mus/property_converter.h", | 100 "mus/property_converter.h", |
| 100 "mus/surface_id_handler.h", | 101 "mus/surface_id_handler.h", |
| 101 "mus/text_input_client_impl.cc", | 102 "mus/text_input_client_impl.cc", |
| 102 "mus/text_input_client_impl.h", | 103 "mus/text_input_client_impl.h", |
| 103 "mus/window_compositor_frame_sink.cc", | 104 "mus/window_compositor_frame_sink.cc", |
| 104 "mus/window_compositor_frame_sink.h", | 105 "mus/window_compositor_frame_sink.h", |
| 105 "mus/window_manager_delegate.cc", | 106 "mus/window_manager_delegate.cc", |
| 106 "mus/window_manager_delegate.h", | 107 "mus/window_manager_delegate.h", |
| 107 "mus/window_mus.h", | 108 "mus/window_mus.h", |
| 108 "mus/window_port_mus.cc", | 109 "mus/window_port_mus.cc", |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 "window_targeter_unittest.cc", | 340 "window_targeter_unittest.cc", |
| 340 "window_tree_host_unittest.cc", | 341 "window_tree_host_unittest.cc", |
| 341 "window_unittest.cc", | 342 "window_unittest.cc", |
| 342 ] | 343 ] |
| 343 | 344 |
| 344 deps = [ | 345 deps = [ |
| 345 ":test_support", | 346 ":test_support", |
| 346 "//base/test:test_support", | 347 "//base/test:test_support", |
| 347 "//mojo/common", | 348 "//mojo/common", |
| 348 "//net", | 349 "//net", |
| 350 "//services/ui/public/cpp", |
| 349 "//skia", | 351 "//skia", |
| 350 "//testing/gtest", | 352 "//testing/gtest", |
| 351 "//ui/base:test_support", | 353 "//ui/base:test_support", |
| 352 "//ui/compositor:test_support", | 354 "//ui/compositor:test_support", |
| 353 "//ui/display:test_support", | 355 "//ui/display:test_support", |
| 354 "//ui/events:gesture_detection", | 356 "//ui/events:gesture_detection", |
| 355 "//ui/events:test_support", | 357 "//ui/events:test_support", |
| 356 "//ui/gfx", | 358 "//ui/gfx", |
| 357 "//ui/gfx/geometry", | 359 "//ui/gfx/geometry", |
| 358 "//ui/gl:test_support", | 360 "//ui/gl:test_support", |
| 359 ] | 361 ] |
| 360 | 362 |
| 361 if (is_linux) { | 363 if (is_linux) { |
| 362 deps += [ "//third_party/mesa" ] | 364 deps += [ "//third_party/mesa" ] |
| 363 } | 365 } |
| 364 | 366 |
| 365 data_deps = [ | 367 data_deps = [ |
| 366 "//third_party/mesa:osmesa", | 368 "//third_party/mesa:osmesa", |
| 367 ] | 369 ] |
| 368 } | 370 } |
| OLD | NEW |