| 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_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 component("mus_common") { | 9 component("mus_common") { |
| 10 sources = [ | 10 sources = [ |
| 11 "event_matcher_util.cc", | 11 "event_matcher_util.cc", |
| 12 "event_matcher_util.h", | 12 "event_matcher_util.h", |
| 13 "generic_shared_memory_id_generator.cc", |
| 14 "generic_shared_memory_id_generator.h", |
| 13 "gpu_memory_buffer_impl.cc", | 15 "gpu_memory_buffer_impl.cc", |
| 14 "gpu_memory_buffer_impl.h", | 16 "gpu_memory_buffer_impl.h", |
| 15 "gpu_service.cc", | 17 "gpu_service.cc", |
| 16 "gpu_service.h", | 18 "gpu_service.h", |
| 17 "gpu_type_converters.cc", | 19 "gpu_type_converters.cc", |
| 18 "gpu_type_converters.h", | 20 "gpu_type_converters.h", |
| 19 "mojo_buffer_backing.cc", | 21 "mojo_buffer_backing.cc", |
| 20 "mojo_buffer_backing.h", | 22 "mojo_buffer_backing.h", |
| 21 "mojo_gpu_memory_buffer.cc", | 23 "mojo_gpu_memory_buffer.cc", |
| 22 "mojo_gpu_memory_buffer.h", | 24 "mojo_gpu_memory_buffer.h", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "//testing/gtest", | 87 "//testing/gtest", |
| 86 "//ui/gfx:test_support", | 88 "//ui/gfx:test_support", |
| 87 "//ui/gfx/ipc", | 89 "//ui/gfx/ipc", |
| 88 ] | 90 ] |
| 89 } | 91 } |
| 90 | 92 |
| 91 mojo_application_manifest("mus_common_unittests_app_manifest") { | 93 mojo_application_manifest("mus_common_unittests_app_manifest") { |
| 92 application_name = "mus_common_unittests_app" | 94 application_name = "mus_common_unittests_app" |
| 93 source = "mus_common_unittests_app_manifest.json" | 95 source = "mus_common_unittests_app_manifest.json" |
| 94 } | 96 } |
| OLD | NEW |