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

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

Issue 2937913002: Revert of Create BUILD.gn files for //media/filters. (Closed)
Patch Set: 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:filters_common" ] 307 deps += [ "//media: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
317 if (is_android) { 313 if (is_android) {
318 public_deps += [ 314 public_deps += [
319 "//media/base/android", 315 "//media/base/android",
320 "//media/base/android:media_jni_headers", 316 "//media/base/android:media_jni_headers",
321 ] 317 ]
322 allow_circular_includes_from += [ "//media/base/android" ] 318 allow_circular_includes_from += [ "//media/base/android" ]
323 } 319 }
324 320
325 if (is_linux && use_x11) { 321 if (is_linux && use_x11) {
326 configs += [ 322 configs += [
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 572
577 fuzzer_test("media_container_names_fuzzer") { 573 fuzzer_test("media_container_names_fuzzer") {
578 sources = [ 574 sources = [
579 "container_names_fuzzertest.cc", 575 "container_names_fuzzertest.cc",
580 ] 576 ]
581 deps = [ 577 deps = [
582 "//base", 578 "//base",
583 "//media", 579 "//media",
584 ] 580 ]
585 } 581 }
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