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/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 "video_capture_types.cc", | 165 "video_capture_types.cc", |
166 "video_capture_types.h", | 166 "video_capture_types.h", |
167 "video_capturer_source.cc", | 167 "video_capturer_source.cc", |
168 "video_capturer_source.h", | 168 "video_capturer_source.h", |
169 "video_decoder.cc", | 169 "video_decoder.cc", |
170 "video_decoder.h", | 170 "video_decoder.h", |
171 "video_decoder_config.cc", | 171 "video_decoder_config.cc", |
172 "video_decoder_config.h", | 172 "video_decoder_config.h", |
173 "video_frame.cc", | 173 "video_frame.cc", |
174 "video_frame.h", | 174 "video_frame.h", |
| 175 "video_frame_metadata.cc", |
| 176 "video_frame_metadata.h", |
175 "video_frame_pool.cc", | 177 "video_frame_pool.cc", |
176 "video_frame_pool.h", | 178 "video_frame_pool.h", |
177 "video_renderer.cc", | 179 "video_renderer.cc", |
178 "video_renderer.h", | 180 "video_renderer.h", |
179 "video_rotation.h", | 181 "video_rotation.h", |
180 "video_util.cc", | 182 "video_util.cc", |
181 "video_util.h", | 183 "video_util.h", |
182 "wall_clock_time_source.cc", | 184 "wall_clock_time_source.cc", |
183 "wall_clock_time_source.h", | 185 "wall_clock_time_source.h", |
184 "yuv_convert.cc", | 186 "yuv_convert.cc", |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 | 267 |
266 # Minimal media component for media/cast on iOS. | 268 # Minimal media component for media/cast on iOS. |
267 config("base_for_cast_ios_dependent_config") { | 269 config("base_for_cast_ios_dependent_config") { |
268 defines = [ "MEDIA_FOR_CAST_IOS" ] | 270 defines = [ "MEDIA_FOR_CAST_IOS" ] |
269 } | 271 } |
270 | 272 |
271 source_set("base_for_cast_ios") { | 273 source_set("base_for_cast_ios") { |
272 sources = [ | 274 sources = [ |
273 "video_frame.cc", | 275 "video_frame.cc", |
274 "video_frame.h", | 276 "video_frame.h", |
| 277 "video_frame_metadata.cc", |
| 278 "video_frame_metadata.h", |
275 ] | 279 ] |
276 configs += [ | 280 configs += [ |
277 "//build/config/compiler:no_size_t_to_int_warning", | 281 "//build/config/compiler:no_size_t_to_int_warning", |
278 "//media:media_config", | 282 "//media:media_config", |
279 ] | 283 ] |
280 all_dependent_configs = [ ":base_for_cast_ios_dependent_config" ] | 284 all_dependent_configs = [ ":base_for_cast_ios_dependent_config" ] |
281 } | 285 } |
282 | 286 |
283 source_set("test_support") { | 287 source_set("test_support") { |
284 testonly = true | 288 testonly = true |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 if (is_posix) { | 484 if (is_posix) { |
481 yasm_flags += [ "-DELF" ] | 485 yasm_flags += [ "-DELF" ] |
482 if (current_cpu == "x64") { | 486 if (current_cpu == "x64") { |
483 # TODO(ajwong): Why isn't this true in mac? | 487 # TODO(ajwong): Why isn't this true in mac? |
484 yasm_flags += [ "-DPIC" ] | 488 yasm_flags += [ "-DPIC" ] |
485 } | 489 } |
486 } | 490 } |
487 } | 491 } |
488 } | 492 } |
489 } | 493 } |
OLD | NEW |