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

Side by Side Diff: services/media/framework/BUILD.gn

Issue 2024953003: Motown: Move framework/util/incident* so other services can use it (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni") 7 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni")
8 8
9 source_set("framework") { 9 source_set("framework") {
10 sources = [ 10 sources = [
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "types/text_stream_type.cc", 71 "types/text_stream_type.cc",
72 "types/text_stream_type.h", 72 "types/text_stream_type.h",
73 "types/video_stream_type.cc", 73 "types/video_stream_type.cc",
74 "types/video_stream_type.h", 74 "types/video_stream_type.h",
75 "util/callback_joiner.cc", 75 "util/callback_joiner.cc",
76 "util/callback_joiner.h", 76 "util/callback_joiner.h",
77 "util/conversion_pipeline_builder.cc", 77 "util/conversion_pipeline_builder.cc",
78 "util/conversion_pipeline_builder.h", 78 "util/conversion_pipeline_builder.h",
79 "util/formatting.cc", 79 "util/formatting.cc",
80 "util/formatting.h", 80 "util/formatting.h",
81 "util/incident.cc",
82 "util/incident.h",
83 "util/lpcm_util.cc", 81 "util/lpcm_util.cc",
84 "util/lpcm_util.h", 82 "util/lpcm_util.h",
85 "util/safe_clone.h", 83 "util/safe_clone.h",
86 ] 84 ]
87 85
88 deps = [ 86 deps = [
89 "//base", 87 "//base",
90 "//mojo/public/cpp/application", 88 "//mojo/public/cpp/application",
91 "//mojo/public/cpp/bindings:callback", 89 "//mojo/public/cpp/bindings:callback",
90 "//services/util/cpp",
92 ] 91 ]
93 } 92 }
94 93
95 mojo_native_application("apptests") { 94 mojo_native_application("apptests") {
96 output_name = "media_framework_apptests" 95 output_name = "media_framework_apptests"
97 96
98 testonly = true 97 testonly = true
99 98
100 sources = [ 99 sources = [
101 "test/incident_test.cc",
102 "test/sparse_byte_buffer_test.cc", 100 "test/sparse_byte_buffer_test.cc",
103 "test/test_base.h", 101 "test/test_base.h",
104 ] 102 ]
105 103
106 deps = [ 104 deps = [
107 ":framework", 105 ":framework",
108 "//base", 106 "//base",
109 "//mojo/application", 107 "//mojo/application",
110 "//mojo/application:test_support", 108 "//mojo/application:test_support",
111 "//services/media/framework_create", 109 "//services/media/framework_create",
110 "//services/util/cpp",
112 ] 111 ]
113 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698