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

Side by Side Diff: mojo/services/media/common/cpp/BUILD.gn

Issue 2068043005: Motown: Video renderer library code (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fixes per feedback. 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
« no previous file with comments | « no previous file | mojo/services/media/common/cpp/video_converter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/module_args/mojo.gni") 5 import("//build/module_args/mojo.gni")
6 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni") 6 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni")
7 7
8 mojo_sdk_source_set("cpp") { 8 mojo_sdk_source_set("cpp") {
9 restrict_external_deps = false 9 restrict_external_deps = false
10 sources = [ 10 sources = [
11 "circular_buffer_media_pipe_adapter.cc", 11 "circular_buffer_media_pipe_adapter.cc",
12 "circular_buffer_media_pipe_adapter.h", 12 "circular_buffer_media_pipe_adapter.h",
13 "fifo_allocator.cc", 13 "fifo_allocator.cc",
14 "fifo_allocator.h", 14 "fifo_allocator.h",
15 "linear_transform.cc", 15 "linear_transform.cc",
16 "linear_transform.h", 16 "linear_transform.h",
17 "local_time.h", 17 "local_time.h",
18 "mapped_shared_buffer.cc", 18 "mapped_shared_buffer.cc",
19 "mapped_shared_buffer.h", 19 "mapped_shared_buffer.h",
20 "shared_media_buffer_allocator.cc", 20 "shared_media_buffer_allocator.cc",
21 "shared_media_buffer_allocator.h", 21 "shared_media_buffer_allocator.h",
22 "timeline.h", 22 "timeline.h",
23 "timeline_function.cc", 23 "timeline_function.cc",
24 "timeline_function.h", 24 "timeline_function.h",
25 "timeline_rate.cc", 25 "timeline_rate.cc",
26 "timeline_rate.h", 26 "timeline_rate.h",
27 "video_converter.cc",
28 "video_converter.h",
29 "video_packet_layout.cc",
30 "video_packet_layout.h",
31 "video_renderer.cc",
32 "video_renderer.h",
27 ] 33 ]
28 34
29 if (is_posix) { 35 if (is_posix) {
30 sources += [ 36 sources += [
31 "platform/posix/local_time.cc", 37 "platform/posix/local_time.cc",
32 "platform/posix/local_time.h", 38 "platform/posix/local_time.h",
33 ] 39 ]
34 } else { 40 } else {
35 sources += [ "platform/generic/local_time.h" ] 41 sources += [ "platform/generic/local_time.h" ]
36 } 42 }
37 43
38 deps = [ 44 deps = [
39 "$mojo_sdk_root/mojo/public/cpp/environment", 45 "$mojo_sdk_root/mojo/public/cpp/environment",
40 "$mojo_sdk_root/mojo/public/cpp/utility", 46 "$mojo_sdk_root/mojo/public/cpp/utility",
41 "$mojo_sdk_root/mojo/services/media/common/interfaces", 47 "$mojo_sdk_root/mojo/services/media/common/interfaces",
48 "$mojo_sdk_root/mojo/services/media/core/interfaces",
42 ] 49 ]
43 } 50 }
44 # Look for unit tests in services/media/common/test 51 # Look for unit tests in services/media/common/test
45 # TODO(dalesat): Move unit tests here using different test infrastructure. 52 # TODO(dalesat): Move unit tests here using different test infrastructure.
OLDNEW
« no previous file with comments | « no previous file | mojo/services/media/common/cpp/video_converter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698