Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: components/mus/common/BUILD.gn

Issue 2049083002: Implement MusGpuMemoryBufferManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "event_param_traits.cc", 13 "event_param_traits.cc",
14 "event_param_traits.h", 14 "event_param_traits.h",
15 "event_param_traits_macros.h", 15 "event_param_traits_macros.h",
16 "generic_shared_memory_id_generator.cc",
17 "generic_shared_memory_id_generator.h",
16 "gpu_memory_buffer_impl.cc", 18 "gpu_memory_buffer_impl.cc",
17 "gpu_memory_buffer_impl.h", 19 "gpu_memory_buffer_impl.h",
18 "gpu_service.cc", 20 "gpu_service.cc",
19 "gpu_service.h", 21 "gpu_service.h",
20 "gpu_type_converters.cc", 22 "gpu_type_converters.cc",
21 "gpu_type_converters.h", 23 "gpu_type_converters.h",
22 "mojo_buffer_backing.cc", 24 "mojo_buffer_backing.cc",
23 "mojo_buffer_backing.h", 25 "mojo_buffer_backing.h",
24 "mojo_gpu_memory_buffer.cc", 26 "mojo_gpu_memory_buffer.cc",
25 "mojo_gpu_memory_buffer.h", 27 "mojo_gpu_memory_buffer.h",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 "//ui/events:events", 92 "//ui/events:events",
91 "//ui/gfx:test_support", 93 "//ui/gfx:test_support",
92 "//ui/gfx/ipc", 94 "//ui/gfx/ipc",
93 ] 95 ]
94 } 96 }
95 97
96 mojo_application_manifest("mus_common_unittests_app_manifest") { 98 mojo_application_manifest("mus_common_unittests_app_manifest") {
97 application_name = "mus_common_unittests_app" 99 application_name = "mus_common_unittests_app"
98 source = "mus_common_unittests_app_manifest.json" 100 source = "mus_common_unittests_app_manifest.json"
99 } 101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698