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

Side by Side Diff: media/base/BUILD.gn

Issue 688423003: [Cast] VideoFrameFactory interface to vend frames with encoder affinity. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 1 month 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 | media/cast/BUILD.gn » ('j') | media/cast/cast_sender.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 244
245 # Minimal media component for media/cast on iOS. 245 # Minimal media component for media/cast on iOS.
246 config("base_for_cast_ios_dependent_config") { 246 config("base_for_cast_ios_dependent_config") {
247 defines = [ "MEDIA_FOR_CAST_IOS" ] 247 defines = [ "MEDIA_FOR_CAST_IOS" ]
248 } 248 }
249 249
250 source_set("base_for_cast_ios") { 250 source_set("base_for_cast_ios") {
251 sources = [ 251 sources = [
252 "video_frame.cc", 252 "video_frame.cc",
253 "video_frame.h", 253 "video_frame.h",
254 "video_frame_pool.cc",
255 "video_frame_pool.h",
254 ] 256 ]
255 configs += [ "//media:media_config" ] 257 configs += [ "//media:media_config" ]
256 all_dependent_configs = [ ":base_for_cast_ios_dependent_config" ] 258 all_dependent_configs = [ ":base_for_cast_ios_dependent_config" ]
257 } 259 }
258 260
259 source_set("test_support") { 261 source_set("test_support") {
260 testonly = true 262 testonly = true
261 sources = [ 263 sources = [
262 "fake_audio_render_callback.cc", 264 "fake_audio_render_callback.cc",
263 "fake_audio_render_callback.h", 265 "fake_audio_render_callback.h",
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 if (is_posix) { 455 if (is_posix) {
454 yasm_flags += [ "-DELF" ] 456 yasm_flags += [ "-DELF" ]
455 if (cpu_arch == "x64") { 457 if (cpu_arch == "x64") {
456 # TODO(ajwong): Why isn't this true in mac? 458 # TODO(ajwong): Why isn't this true in mac?
457 yasm_flags += [ "-DPIC" ] 459 yasm_flags += [ "-DPIC" ]
458 } 460 }
459 } 461 }
460 } 462 }
461 } 463 }
462 } 464 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/BUILD.gn » ('j') | media/cast/cast_sender.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698