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

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

Issue 1030253002: Fix missing symbols for pre-linking of the Cast sender library for iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update media/base/BUILD.gn. Created 5 years, 8 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 | « base/process/process_metrics_ios.cc ('k') | media/base/yuv_convert.cc » ('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 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 } 265 }
266 } 266 }
267 267
268 # Minimal media component for media/cast on iOS. 268 # Minimal media component for media/cast on iOS.
269 config("base_for_cast_ios_dependent_config") { 269 config("base_for_cast_ios_dependent_config") {
270 defines = [ "MEDIA_FOR_CAST_IOS" ] 270 defines = [ "MEDIA_FOR_CAST_IOS" ]
271 } 271 }
272 272
273 source_set("base_for_cast_ios") { 273 source_set("base_for_cast_ios") {
274 sources = [ 274 sources = [
275 "simd/convert_rgb_to_yuv.h",
276 "simd/convert_rgb_to_yuv_c.cc",
277 "simd/convert_yuv_to_rgb.h",
278 "simd/convert_yuv_to_rgb_c.cc",
279 "simd/filter_yuv.h",
280 "simd/filter_yuv_c.cc",
275 "video_frame.cc", 281 "video_frame.cc",
276 "video_frame.h", 282 "video_frame.h",
277 "video_frame_metadata.cc", 283 "video_frame_metadata.cc",
278 "video_frame_metadata.h", 284 "video_frame_metadata.h",
285 "video_util.cc",
286 "video_util.h",
287 "yuv_convert.cc",
288 "yuv_convert.h",
279 ] 289 ]
280 configs += [ 290 configs += [
281 "//build/config/compiler:no_size_t_to_int_warning", 291 "//build/config/compiler:no_size_t_to_int_warning",
282 "//media:media_config", 292 "//media:media_config",
283 ] 293 ]
284 all_dependent_configs = [ ":base_for_cast_ios_dependent_config" ] 294 all_dependent_configs = [ ":base_for_cast_ios_dependent_config" ]
285 } 295 }
286 296
287 source_set("test_support") { 297 source_set("test_support") {
288 testonly = true 298 testonly = true
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 if (is_posix) { 494 if (is_posix) {
485 yasm_flags += [ "-DELF" ] 495 yasm_flags += [ "-DELF" ]
486 if (current_cpu == "x64") { 496 if (current_cpu == "x64") {
487 # TODO(ajwong): Why isn't this true in mac? 497 # TODO(ajwong): Why isn't this true in mac?
488 yasm_flags += [ "-DPIC" ] 498 yasm_flags += [ "-DPIC" ]
489 } 499 }
490 } 500 }
491 } 501 }
492 } 502 }
493 } 503 }
OLDNEW
« no previous file with comments | « base/process/process_metrics_ios.cc ('k') | media/base/yuv_convert.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698