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

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

Issue 2911643002: Create BUILD.gn files for //media/filters. (Closed)
Patch Set: media configs added gor filter target. Created 3 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 | « media/BUILD.gn ('k') | media/base/mac/BUILD.gn » ('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/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 configs += [ ":base_config" ] 297 configs += [ ":base_config" ]
298 298
299 if (media_use_ffmpeg) { 299 if (media_use_ffmpeg) {
300 if (!is_android) { 300 if (!is_android) {
301 sources += [ 301 sources += [
302 "audio_video_metadata_extractor.cc", 302 "audio_video_metadata_extractor.cc",
303 "audio_video_metadata_extractor.h", 303 "audio_video_metadata_extractor.h",
304 "media_file_checker.cc", 304 "media_file_checker.cc",
305 "media_file_checker.h", 305 "media_file_checker.h",
306 ] 306 ]
307 deps += [ "//media:filters_common" ] 307 deps += [ "//media/filters:filters_common" ]
308 } 308 }
309 309
310 deps += [ "//third_party/ffmpeg" ] 310 deps += [ "//third_party/ffmpeg" ]
311 } 311 }
312 312
313 if (media_use_libvpx) {
314 deps += [ "//third_party/libvpx" ]
315 }
316
313 if (is_android) { 317 if (is_android) {
314 public_deps += [ 318 public_deps += [
315 "//media/base/android", 319 "//media/base/android",
316 "//media/base/android:media_jni_headers", 320 "//media/base/android:media_jni_headers",
317 ] 321 ]
318 allow_circular_includes_from += [ "//media/base/android" ] 322 allow_circular_includes_from += [ "//media/base/android" ]
319 } 323 }
320 324
321 if (is_linux && use_x11) { 325 if (is_linux && use_x11) {
322 configs += [ 326 configs += [
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 576
573 fuzzer_test("media_container_names_fuzzer") { 577 fuzzer_test("media_container_names_fuzzer") {
574 sources = [ 578 sources = [
575 "container_names_fuzzertest.cc", 579 "container_names_fuzzertest.cc",
576 ] 580 ]
577 deps = [ 581 deps = [
578 "//base", 582 "//base",
579 "//media", 583 "//media",
580 ] 584 ]
581 } 585 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/base/mac/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698